summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorLiming An <limingx.l.an@intel.com>2012-03-26 14:04:20 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-28 16:49:18 +0100
commit26cce34e4dd0171d06407fb417577e67db3a5dc9 (patch)
tree50b8e03177ccea80d481e5f63e9fb88b10bbd00f /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parent044376692d231f016245844f172f7824f43f3187 (diff)
downloadpoky-26cce34e4dd0171d06407fb417577e67db3a5dc9.tar.gz
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 <limingx.l.an@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py6
1 files changed, 6 insertions, 0 deletions
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):
440 params["runnable_machine_patterns"] = self.server.runCommand(["getVariable", "RUNNABLE_MACHINE_PATTERNS"]) or "" 440 params["runnable_machine_patterns"] = self.server.runCommand(["getVariable", "RUNNABLE_MACHINE_PATTERNS"]) or ""
441 params["deployable_image_types"] = self.server.runCommand(["getVariable", "DEPLOYABLE_IMAGE_TYPES"]) or "" 441 params["deployable_image_types"] = self.server.runCommand(["getVariable", "DEPLOYABLE_IMAGE_TYPES"]) or ""
442 params["tmpdir"] = self.server.runCommand(["getVariable", "TMPDIR"]) or "" 442 params["tmpdir"] = self.server.runCommand(["getVariable", "TMPDIR"]) or ""
443 params["distro_version"] = self.server.runCommand(["getVariable", "DISTRO_VERSION"]) or ""
444 params["target_os"] = self.server.runCommand(["getVariable", "TARGET_OS"]) or ""
445 params["target_arch"] = self.server.runCommand(["getVariable", "TARGET_ARCH"]) or ""
446 params["tune_pkgarch"] = self.server.runCommand(["getVariable", "TUNE_PKGARCH"]) or ""
447 params["bb_version"] = self.server.runCommand(["getVariable", "BB_MIN_VERSION"]) or ""
448 params["tune_arch"] = self.server.runCommand(["getVariable", "TUNE_ARCH"]) or ""
443 return params 449 return params