diff options
author | 2012-04-23 14:36:10 -0700 | |
---|---|---|
committer | 2012-04-23 23:07:33 +0100 | |
commit | e95ce40abd4c306298cb97389c34b6c486f7818b (patch) | |
tree | 38ddebf29e18e03425a06f1a6e05703c28c1cc61 | |
parent | 4a83ebbee0b1280056ddd58e05c422c210e28b78 (diff) | |
download | poky-e95ce40abd4c306298cb97389c34b6c486f7818b.tar.gz poky-e95ce40abd4c306298cb97389c34b6c486f7818b.tar.bz2 poky-e95ce40abd4c306298cb97389c34b6c486f7818b.zip |
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>
-rwxr-xr-x | scripts/hob | 3 |
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 |