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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index 4b908f9041..ae1cefc538 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -435,8 +435,11 @@ class HobHandler(gobject.GObject):
435 params["core_base"] = self.runCommand(["getVariable", "COREBASE"]) or "" 435 params["core_base"] = self.runCommand(["getVariable", "COREBASE"]) or ""
436 hob_layer = params["core_base"] + "/meta-hob" 436 hob_layer = params["core_base"] + "/meta-hob"
437 params["layer"] = self.runCommand(["getVariable", "BBLAYERS"]) or "" 437 params["layer"] = self.runCommand(["getVariable", "BBLAYERS"]) or ""
438 params["layers_non_removable"] = self.runCommand(["getVariable", "BBLAYERS_NON_REMOVABLE"])
438 if hob_layer not in params["layer"].split(): 439 if hob_layer not in params["layer"].split():
439 params["layer"] += (" " + hob_layer) 440 params["layer"] += (" " + hob_layer)
441 if hob_layer not in params["layers_non_removable"].split():
442 params["layers_non_removable"] += (" " + hob_layer)
440 params["dldir"] = self.runCommand(["getVariable", "DL_DIR"]) or "" 443 params["dldir"] = self.runCommand(["getVariable", "DL_DIR"]) or ""
441 params["machine"] = self.runCommand(["getVariable", "MACHINE"]) or "" 444 params["machine"] = self.runCommand(["getVariable", "MACHINE"]) or ""
442 params["distro"] = self.runCommand(["getVariable", "DISTRO"]) or "defaultsetup" 445 params["distro"] = self.runCommand(["getVariable", "DISTRO"]) or "defaultsetup"