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:06:22 +0100
commita6e7760403e31c5e25d55b4715dc53bf9fd6f9e6 (patch)
tree1b30ea3284206987539fa219512628107c1ad4a1 /scripts
parent02243800b91c21e0888848f653c26d844c0c3baa (diff)
downloadopenembedded-core-contrib-a6e7760403e31c5e25d55b4715dc53bf9fd6f9e6.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