diff options
author | Bogdan Marinescu <bogdan.a.marinescu@intel.com> | 2013-01-14 07:31:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-14 13:57:00 +0300 |
commit | 1bd6fa9c81dea90f66641835a4c2ed6f2b7a239a (patch) | |
tree | f2f18321aa916455285aa32b269295a112430d34 | |
parent | a015881f2207aded601459ba3eebbefb0002b3c5 (diff) | |
download | openembedded-core-1bd6fa9c81dea90f66641835a4c2ed6f2b7a239a.tar.gz openembedded-core-1bd6fa9c81dea90f66641835a4c2ed6f2b7a239a.tar.bz2 openembedded-core-1bd6fa9c81dea90f66641835a4c2ed6f2b7a239a.zip |
scripts/hob: enable additional arguments
Allow "hob" to receive other arguments in the command line (for example
the server type and the address of the remote end if running remotely).
Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/hob | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/hob b/scripts/hob index 4a821cb08b..8d33ab1782 100755 --- a/scripts/hob +++ b/scripts/hob @@ -1,6 +1,6 @@ #!/usr/bin/env bash export BB_ENV_EXTRAWHITE="DISABLE_SANITY_CHECKS $BB_ENV_EXTRAWHITE" -DISABLE_SANITY_CHECKS=1 bitbake -u hob +DISABLE_SANITY_CHECKS=1 bitbake -u hob $@ ret=$? exit $ret |