summaryrefslogtreecommitdiffstats
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:07:33 +0100
commite95ce40abd4c306298cb97389c34b6c486f7818b (patch)
tree38ddebf29e18e03425a06f1a6e05703c28c1cc61 /scripts
parent4a83ebbee0b1280056ddd58e05c422c210e28b78 (diff)
downloadpoky-e95ce40abd4c306298cb97389c34b6c486f7818b.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. (From OE-Core rev: fe98d1c7159636f123b27292bbd4cc224b532bf0) 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 @@
1#!/usr/bin/env bash 1#!/usr/bin/env bash
2bitbake -u hob 2export BB_ENV_EXTRAWHITE="DISABLE_SANITY_CHECKS $BB_ENV_EXTRAWHITE"
3DISABLE_SANITY_CHECKS=1 bitbake -u hob
3 4
4ret=$? 5ret=$?
5exit $ret 6exit $ret