summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-23 14:35:44 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-23 23:04:22 +0100
commit7ddb8c8b68e5b9dab7f4f3a6b6f3c31b28414b96 (patch)
tree8537c42cfe952ebe67dafd70d1ebdc6ef74ac179 /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parentfb0d7fc34fbaeb0057e742b0896bed3dc5bdcee1 (diff)
downloadpoky-7ddb8c8b68e5b9dab7f4f3a6b6f3c31b28414b96.tar.gz
hob: enable sanity checks after launch
To ensure the users configuration is sanity tested enable the sanity checks after the GUI has started but before any parsing is done. (Bitbake rev: 244ce2b900ae6cecbeeccfe2056e61c132476261) Signed-off-by: Joshua Lock <josh@linux.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, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index ebfc388f73..c918aad8dc 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -233,6 +233,9 @@ class HobHandler(gobject.GObject):
233 inherits = inherits + " " + bbclass 233 inherits = inherits + " " + bbclass
234 self.runCommand(["setVariable", "INHERIT", inherits]) 234 self.runCommand(["setVariable", "INHERIT", inherits])
235 235
236 def enable_sanity(self):
237 self.runCommand(["setVariable", "DISABLE_SANITY_CHECKS", "0"])
238
236 def set_bblayers(self, bblayers): 239 def set_bblayers(self, bblayers):
237 self.runCommand(["setVariable", "BBLAYERS_HOB", " ".join(bblayers)]) 240 self.runCommand(["setVariable", "BBLAYERS_HOB", " ".join(bblayers)])
238 241