aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-23 14:36:10 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-23 23:03:03 +0100
commitfe98d1c7159636f123b27292bbd4cc224b532bf0 (patch)
tree1b30ea3284206987539fa219512628107c1ad4a1 /scripts
parentb022641f939bcfcdaddddc4db3af4d2dc70de832 (diff)
downloadopenembedded-core-fe98d1c7159636f123b27292bbd4cc224b532bf0.tar.gz
scripts/hob: disable sanity checks when launching
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/hob3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/hob b/scripts/hob
index ee80cb3701..4a821cb08b 100755
--- a/scripts/hob
+++ b/scripts/hob
@@ -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