From: Joshua Lock Date: Mon, 23 Apr 2012 21:35:44 +0000 (-0700) Subject: hob: enable sanity checks after launch X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=244ce2b900ae6cecbeeccfe2056e61c132476261;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py index dd3ea95a8fa..cbcb3f19650 100755 --- a/lib/bb/ui/crumbs/builder.py +++ b/lib/bb/ui/crumbs/builder.py @@ -557,6 +557,8 @@ class Builder(gtk.Window): self.handler.init_cooker() # set bb layers self.handler.set_bblayers(self.configuration.layers) + # Re-enable sanity checks + self.handler.enable_sanity() # set local configuration self.handler.set_machine(self.configuration.curr_mach) self.handler.set_package_format(self.configuration.curr_package_format) diff --git a/lib/bb/ui/crumbs/hobeventhandler.py b/lib/bb/ui/crumbs/hobeventhandler.py index ebfc388f736..c918aad8dcb 100644 --- a/lib/bb/ui/crumbs/hobeventhandler.py +++ b/lib/bb/ui/crumbs/hobeventhandler.py @@ -233,6 +233,9 @@ class HobHandler(gobject.GObject): inherits = inherits + " " + bbclass self.runCommand(["setVariable", "INHERIT", inherits]) + def enable_sanity(self): + self.runCommand(["setVariable", "DISABLE_SANITY_CHECKS", "0"]) + def set_bblayers(self, bblayers): self.runCommand(["setVariable", "BBLAYERS_HOB", " ".join(bblayers)])