From 26cce34e4dd0171d06407fb417577e67db3a5dc9 Mon Sep 17 00:00:00 2001 From: Liming An Date: Mon, 26 Mar 2012 14:04:20 +0800 Subject: Hob: change the implementation way about get config info for building log Make the building log config information to get from the bitbake parameters directly, and then cancel the old way of filting the building log on running [YOCTO #2144] (From Poky rev: b52025a0fe2ca65e4d8549b1b90f5813b0c2e39f) (Bitbake rev: 983f8848da0be02dadb1bb6530ff736325d014ba) Signed-off-by: Liming An Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py') diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index 8042fbdf59..8583fa49e5 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py @@ -440,4 +440,10 @@ class HobHandler(gobject.GObject): params["runnable_machine_patterns"] = self.server.runCommand(["getVariable", "RUNNABLE_MACHINE_PATTERNS"]) or "" params["deployable_image_types"] = self.server.runCommand(["getVariable", "DEPLOYABLE_IMAGE_TYPES"]) or "" params["tmpdir"] = self.server.runCommand(["getVariable", "TMPDIR"]) or "" + params["distro_version"] = self.server.runCommand(["getVariable", "DISTRO_VERSION"]) or "" + params["target_os"] = self.server.runCommand(["getVariable", "TARGET_OS"]) or "" + params["target_arch"] = self.server.runCommand(["getVariable", "TARGET_ARCH"]) or "" + params["tune_pkgarch"] = self.server.runCommand(["getVariable", "TUNE_PKGARCH"]) or "" + params["bb_version"] = self.server.runCommand(["getVariable", "BB_MIN_VERSION"]) or "" + params["tune_arch"] = self.server.runCommand(["getVariable", "TUNE_ARCH"]) or "" return params -- cgit v1.2.3-54-g00ecf