]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/hob: disable sanity checks when launching
authorJoshua Lock <josh@linux.intel.com>
Mon, 23 Apr 2012 21:36:10 +0000 (14:36 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 23 Apr 2012 22:03:03 +0000 (23:03 +0100)
This enables us to use the GUI to change any settings which might cause
sanity checks to fail, such as the proxy configuration.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/hob

index ee80cb3701f297dfdb642a4c391e2f57f71ec4cf..4a821cb08b4e196da9b2c33378fc3dbdba397e04 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/env bash
-bitbake -u hob
+export BB_ENV_EXTRAWHITE="DISABLE_SANITY_CHECKS $BB_ENV_EXTRAWHITE"
+DISABLE_SANITY_CHECKS=1 bitbake -u hob
 
 ret=$?
 exit $ret