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:04:43 +0100 |
commit | 402972682da41da1ed4b4f160027986b882d01e3 (patch) | |
tree | 1e4058fd18d3e51e07998d7834b8295040dc750c /scripts | |
parent | 4a224311ac618b720bfe144002dea80dff4e8b73 (diff) | |
download | poky-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')
-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 @@ | |||
1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
2 | bitbake -u hob | 2 | export BB_ENV_EXTRAWHITE="DISABLE_SANITY_CHECKS $BB_ENV_EXTRAWHITE" |
3 | DISABLE_SANITY_CHECKS=1 bitbake -u hob | ||
3 | 4 | ||
4 | ret=$? | 5 | ret=$? |
5 | exit $ret | 6 | exit $ret |