summaryrefslogtreecommitdiffstats
path: root/scripts/hob
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:04:43 +0100
commit402972682da41da1ed4b4f160027986b882d01e3 (patch)
tree1e4058fd18d3e51e07998d7834b8295040dc750c /scripts/hob
parent4a224311ac618b720bfe144002dea80dff4e8b73 (diff)
downloadpoky-402972682da41da1ed4b4f160027986b882d01e3.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/hob')
-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