summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-03-24 01:12:09 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-25 12:23:32 +0100
commitbc73876964578d324e5953480b68f7f22a94033c (patch)
treec03e748efd51ae074cd92985ddc13f94ca69ab00 /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parent9b4e1600ab6c890ad3387186842b22fe35909601 (diff)
downloadpoky-bc73876964578d324e5953480b68f7f22a94033c.tar.gz
Hob: runqemu and deployment functionality filter
Implement the filter for runqemu and deployment functionality. runqemu 1) suffix should be in the list of RUNNABLE_IMAGE_TYPES. 2) machine should match the pattern of RUNNABLE_MACHINE_PATTERNS. deployment: 1) suffix should be in the list of DEPLOYMENT_IMAGE_TYPES. (Bitbake rev: de4d09a8d100b81622300db5f46627c649812abd) Signed-off-by: Dongxiao Xu <dongxiao.xu@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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index ec3e0ef1f2..4b8aabc4ec 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -434,4 +434,8 @@ class HobHandler(gobject.GObject):
434 434
435 params["conf_version"] = self.server.runCommand(["getVariable", "CONF_VERSION"]) or "" 435 params["conf_version"] = self.server.runCommand(["getVariable", "CONF_VERSION"]) or ""
436 params["lconf_version"] = self.server.runCommand(["getVariable", "LCONF_VERSION"]) or "" 436 params["lconf_version"] = self.server.runCommand(["getVariable", "LCONF_VERSION"]) or ""
437
438 params["runnable_image_types"] = self.server.runCommand(["getVariable", "RUNNABLE_IMAGE_TYPES"]) or ""
439 params["runnable_machine_patterns"] = self.server.runCommand(["getVariable", "RUNNABLE_MACHINE_PATTERNS"]) or ""
440 params["deployable_image_types"] = self.server.runCommand(["getVariable", "DEPLOYABLE_IMAGE_TYPES"]) or ""
437 return params 441 return params