diff options
author | Joshua Lock <josh@linux.intel.com> | 2012-04-23 14:36:10 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-23 23:03:03 +0100 |
commit | fe98d1c7159636f123b27292bbd4cc224b532bf0 (patch) | |
tree | 1b30ea3284206987539fa219512628107c1ad4a1 /scripts | |
parent | b022641f939bcfcdaddddc4db3af4d2dc70de832 (diff) | |
download | openembedded-core-fe98d1c7159636f123b27292bbd4cc224b532bf0.tar.gz openembedded-core-fe98d1c7159636f123b27292bbd4cc224b532bf0.tar.bz2 openembedded-core-fe98d1c7159636f123b27292bbd4cc224b532bf0.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.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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 |