summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-03-23 15:45:34 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-25 12:23:31 +0100
commitf83586f1e6c24558ada7e7a27a7f422fff42d434 (patch)
treeee460a90f2f0fbc4ffbf4106fd3cf12458fb7d81 /bitbake
parent5098c964c268b3a4a2fc397516a641a89e7a8928 (diff)
downloadpoky-f83586f1e6c24558ada7e7a27a7f422fff42d434.tar.gz
Hob: Fix the workaround to get image types
(Bitbake rev: c8d985ec971c3a18508f9c698cb2df2c1bf96e3a) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 308ef4da7e..ec3e0ef1f2 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -430,8 +430,7 @@ class HobHandler(gobject.GObject):
430 430
431 params["image_fstypes"] = self.server.runCommand(["getVariable", "IMAGE_FSTYPES"]) or "" 431 params["image_fstypes"] = self.server.runCommand(["getVariable", "IMAGE_FSTYPES"]) or ""
432 432
433 # walkaround 433 params["image_types"] = self.server.runCommand(["getVariable", "IMAGE_TYPES"]) or ""
434 params["image_types"] = " ".join(hcc.SUPPORTED_IMAGE_TYPES.keys()).lstrip(" ")
435 434
436 params["conf_version"] = self.server.runCommand(["getVariable", "CONF_VERSION"]) or "" 435 params["conf_version"] = self.server.runCommand(["getVariable", "CONF_VERSION"]) or ""
437 params["lconf_version"] = self.server.runCommand(["getVariable", "LCONF_VERSION"]) or "" 436 params["lconf_version"] = self.server.runCommand(["getVariable", "LCONF_VERSION"]) or ""