summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorLiming An <limingx.l.an@intel.com>2012-06-04 18:52:13 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-08 12:13:15 +0100
commite91f1e28bc1742f010225c49410e49b1257c15c7 (patch)
treecdeaf695ae78a191e8685ac2c8ac530f3d827be8 /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parentc0b92702d367466641f88371fbcbc0fdebdbbb96 (diff)
downloadpoky-e91f1e28bc1742f010225c49410e49b1257c15c7.tar.gz
Hob: Change 'run image' work flow and image detail screen as ui design
Added the qemu_image_kernel selection view box to image detail screen GUI, and changed the 'run image' button clicked work flow. [YOCTO #2155] (Bitbake rev: d548eb8a03cfba5c64c018898972bc0a0bdb280c) 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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 1db9c44295..a00fcd8eda 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -347,7 +347,7 @@ class HobHandler(gobject.GObject):
347 self.commands_async.append(self.SUB_PARSE_CONFIG) 347 self.commands_async.append(self.SUB_PARSE_CONFIG)
348 self.commands_async.append(self.SUB_GNERATE_TGTS) 348 self.commands_async.append(self.SUB_GNERATE_TGTS)
349 self.run_next_command(self.GENERATE_RECIPES) 349 self.run_next_command(self.GENERATE_RECIPES)
350 350
351 def generate_packages(self, tgts, default_task="build"): 351 def generate_packages(self, tgts, default_task="build"):
352 targets = [] 352 targets = []
353 targets.extend(tgts) 353 targets.extend(tgts)
@@ -492,6 +492,7 @@ class HobHandler(gobject.GObject):
492 params["runnable_image_types"] = self._remove_redundant(self.runCommand(["getVariable", "RUNNABLE_IMAGE_TYPES"]) or "") 492 params["runnable_image_types"] = self._remove_redundant(self.runCommand(["getVariable", "RUNNABLE_IMAGE_TYPES"]) or "")
493 params["runnable_machine_patterns"] = self._remove_redundant(self.runCommand(["getVariable", "RUNNABLE_MACHINE_PATTERNS"]) or "") 493 params["runnable_machine_patterns"] = self._remove_redundant(self.runCommand(["getVariable", "RUNNABLE_MACHINE_PATTERNS"]) or "")
494 params["deployable_image_types"] = self._remove_redundant(self.runCommand(["getVariable", "DEPLOYABLE_IMAGE_TYPES"]) or "") 494 params["deployable_image_types"] = self._remove_redundant(self.runCommand(["getVariable", "DEPLOYABLE_IMAGE_TYPES"]) or "")
495 params["kernel_image_type"] = self.runCommand(["getVariable", "KERNEL_IMAGETYPE"]) or ""
495 params["tmpdir"] = self.runCommand(["getVariable", "TMPDIR"]) or "" 496 params["tmpdir"] = self.runCommand(["getVariable", "TMPDIR"]) or ""
496 params["distro_version"] = self.runCommand(["getVariable", "DISTRO_VERSION"]) or "" 497 params["distro_version"] = self.runCommand(["getVariable", "DISTRO_VERSION"]) or ""
497 params["target_os"] = self.runCommand(["getVariable", "TARGET_OS"]) or "" 498 params["target_os"] = self.runCommand(["getVariable", "TARGET_OS"]) or ""