summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index f189553267..1cbb0274c6 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -383,7 +383,9 @@ class HobHandler(gobject.GObject):
383 params = {} 383 params = {}
384 params["core_base"] = self.server.runCommand(["getVariable", "COREBASE"]) or "" 384 params["core_base"] = self.server.runCommand(["getVariable", "COREBASE"]) or ""
385 hob_layer = params["core_base"] + "/meta-hob" 385 hob_layer = params["core_base"] + "/meta-hob"
386 params["layer"] = (self.server.runCommand(["getVariable", "BBLAYERS"]) or "") + " " + hob_layer 386 params["layer"] = self.server.runCommand(["getVariable", "BBLAYERS"]) or ""
387 if hob_layer not in params["layer"].split():
388 params["layer"] += (" " + hob_layer)
387 params["dldir"] = self.server.runCommand(["getVariable", "DL_DIR"]) or "" 389 params["dldir"] = self.server.runCommand(["getVariable", "DL_DIR"]) or ""
388 params["machine"] = self.server.runCommand(["getVariable", "MACHINE"]) or "" 390 params["machine"] = self.server.runCommand(["getVariable", "MACHINE"]) or ""
389 params["distro"] = self.server.runCommand(["getVariable", "DISTRO"]) or "defaultsetup" 391 params["distro"] = self.server.runCommand(["getVariable", "DISTRO"]) or "defaultsetup"