diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-27 08:57:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-28 15:11:11 +0100 |
commit | bd96d929345e90d121f7a5d40fde382a4f83796b (patch) | |
tree | cd437cf1ba1368839b222229ea9a898d7b3f6769 /meta/recipes-devtools | |
parent | f1a3f28c3f2aa9f16c138712fbfd671d731fd62e (diff) | |
download | openembedded-core-bd96d929345e90d121f7a5d40fde382a4f83796b.tar.gz openembedded-core-bd96d929345e90d121f7a5d40fde382a4f83796b.tar.bz2 openembedded-core-bd96d929345e90d121f7a5d40fde382a4f83796b.zip |
bootchart2: no bashism in bootchartd.in
So use /bin/sh
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch | 27 | ||||
-rw-r--r-- | meta/recipes-devtools/bootchart2/bootchart2_git.bb | 6 |
2 files changed, 31 insertions, 2 deletions
diff --git a/meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch b/meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch new file mode 100644 index 0000000000..b013995a0d --- /dev/null +++ b/meta/recipes-devtools/bootchart2/bootchart2/bootchartd-no-bashism.patch @@ -0,0 +1,27 @@ +From ffb5bae5d588aaea6325623462a8070a04767196 Mon Sep 17 00:00:00 2001 +From: Robert Yang <liezhi.yang@windriver.com> +Date: Thu, 14 Aug 2014 08:33:28 -0700 +Subject: [PATCH] bootchartd.in: no bashism + +No bashism in bootchartd.in, so use /bin/sh. + +Upstream-Status: Pending + +Signed-off-by: Robert Yang <liezhi.yang@windriver.com> +--- + bootchartd.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/bootchartd.in b/bootchartd.in +index a408bab..064f6a4 100755 +--- a/bootchartd.in ++++ b/bootchartd.in +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + # + # Bootchart logger script + # Ziga Mahkovec <ziga.mahkovec@klika.si> +-- +1.7.9.5 + diff --git a/meta/recipes-devtools/bootchart2/bootchart2_git.bb b/meta/recipes-devtools/bootchart2/bootchart2_git.bb index 411630491f..04fb901b68 100644 --- a/meta/recipes-devtools/bootchart2/bootchart2_git.bb +++ b/meta/recipes-devtools/bootchart2/bootchart2_git.bb @@ -91,8 +91,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=44ac4678311254db62edf8fd39cb8124" # one commit beyond 1.14.6 for a systemd-related bugfix PV = "0.14.6+git${SRCPV}" -SRC_URI = "git://github.com/mmeeks/bootchart.git" -SRC_URI += "file://bootchartd_stop.sh" +SRC_URI = "git://github.com/mmeeks/bootchart.git \ + file://bootchartd_stop.sh \ + file://bootchartd-no-bashism.patch \ + " SRCREV = "b65ed43b0ae832080fb728245de9ef1a4b48d8b5" |