diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2016-08-17 13:26:09 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-23 17:44:37 +0100 |
commit | 0db6b0f363c9bf6fc36ceb933f10196b131d3b18 (patch) | |
tree | bfaadc0e48228e5a29294a76c6041c1b1ea4d1eb /meta/recipes-devtools/bootchart2 | |
parent | f0213bbe6575a93a947cd93ab4bec3c48d7e2ea8 (diff) | |
download | poky-0db6b0f363c9bf6fc36ceb933f10196b131d3b18.tar.gz |
bootchart2: fixes a BOOTLOG_DEST typo
A flaw was observed in bootchartd that BUILDLOG_DEST should actually be
BOOTLOG_DEST, this seems to be a typo or mix-up which has been fixed in
upstream.
Cherry pick the fix since bootchart2 0.14.8 is still the newest release
so far.
(From OE-Core rev: 299e67291f3d396ba93f4c4a94120228bb9b1d88)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/bootchart2')
-rw-r--r-- | meta/recipes-devtools/bootchart2/bootchart2/0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch | 30 | ||||
-rw-r--r-- | meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/bootchart2/bootchart2/0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch b/meta/recipes-devtools/bootchart2/bootchart2/0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch new file mode 100644 index 0000000000..118814a807 --- /dev/null +++ b/meta/recipes-devtools/bootchart2/bootchart2/0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 2225ab2038bfe50f16f972e39d89bcd0bd7767f5 Mon Sep 17 00:00:00 2001 | ||
2 | From: Steffen Pankratz <kratz00@gmx.de> | ||
3 | Date: Tue, 9 Feb 2016 13:49:42 +0100 | ||
4 | Subject: [PATCH] Fixed: Missing default value for BOOTLOG_DEST | ||
5 | |||
6 | Upstream-Status: Backport | ||
7 | |||
8 | BUILDLOG_DEST seems to be a typo or mix-up which was introduced with 281d1df80884bf2969c509ec60ee8a6593524fe8 | ||
9 | |||
10 | Signed-off-by: Peter Liu <peter.x.liu@external.atlascopco.com> | ||
11 | --- | ||
12 | bootchartd.in | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/bootchartd.in b/bootchartd.in | ||
16 | index f58ab9e..30af677 100755 | ||
17 | --- a/bootchartd.in | ||
18 | +++ b/bootchartd.in | ||
19 | @@ -37,7 +37,7 @@ PATH="/sbin:/bin:/usr/sbin:/usr/bin:$PATH" | ||
20 | |||
21 | # Defaults, in case we can't find our configuration | ||
22 | SAMPLE_HZ=50 | ||
23 | -BUILDLOG_DEST=/var/log/bootchart.tgz | ||
24 | +BOOTLOG_DEST=/var/log/bootchart.tgz | ||
25 | AUTO_RENDER="no" | ||
26 | AUTO_RENDER_DIR="/var/log" | ||
27 | AUTO_RENDER_FORMAT="png" | ||
28 | -- | ||
29 | 1.9.1 | ||
30 | |||
diff --git a/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb b/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb index bc8c1a8a88..fdebb6419c 100644 --- a/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb +++ b/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb | |||
@@ -92,6 +92,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+(\.\d+)*)" | |||
92 | 92 | ||
93 | SRC_URI = "git://github.com/mmeeks/bootchart.git \ | 93 | SRC_URI = "git://github.com/mmeeks/bootchart.git \ |
94 | file://bootchartd_stop.sh \ | 94 | file://bootchartd_stop.sh \ |
95 | file://0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch \ | ||
95 | " | 96 | " |
96 | 97 | ||
97 | S = "${WORKDIR}/git" | 98 | S = "${WORKDIR}/git" |