Comments
Patch
@@ -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)
@@ -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)])
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 <josh@linux.intel.com> --- lib/bb/ui/crumbs/builder.py | 2 ++ lib/bb/ui/crumbs/hobeventhandler.py | 3 +++ 2 files changed, 5 insertions(+), 0 deletions(-)