mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
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>
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 2225ab2038bfe50f16f972e39d89bcd0bd7767f5 Mon Sep 17 00:00:00 2001
|
||||
From: Steffen Pankratz <kratz00@gmx.de>
|
||||
Date: Tue, 9 Feb 2016 13:49:42 +0100
|
||||
Subject: [PATCH] Fixed: Missing default value for BOOTLOG_DEST
|
||||
|
||||
Upstream-Status: Backport
|
||||
|
||||
BUILDLOG_DEST seems to be a typo or mix-up which was introduced with 281d1df80884bf2969c509ec60ee8a6593524fe8
|
||||
|
||||
Signed-off-by: Peter Liu <peter.x.liu@external.atlascopco.com>
|
||||
---
|
||||
bootchartd.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/bootchartd.in b/bootchartd.in
|
||||
index f58ab9e..30af677 100755
|
||||
--- a/bootchartd.in
|
||||
+++ b/bootchartd.in
|
||||
@@ -37,7 +37,7 @@ PATH="/sbin:/bin:/usr/sbin:/usr/bin:$PATH"
|
||||
|
||||
# Defaults, in case we can't find our configuration
|
||||
SAMPLE_HZ=50
|
||||
-BUILDLOG_DEST=/var/log/bootchart.tgz
|
||||
+BOOTLOG_DEST=/var/log/bootchart.tgz
|
||||
AUTO_RENDER="no"
|
||||
AUTO_RENDER_DIR="/var/log"
|
||||
AUTO_RENDER_FORMAT="png"
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -92,6 +92,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+(\.\d+)*)"
|
||||
|
||||
SRC_URI = "git://github.com/mmeeks/bootchart.git \
|
||||
file://bootchartd_stop.sh \
|
||||
file://0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
Reference in New Issue
Block a user