diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-29 17:12:25 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-29 17:12:25 +0000 |
commit | 5d5fab77cf9616bf62023c202b38f309f8bbf189 (patch) | |
tree | c59369ead177b00e7a20008ec25ac76475203135 /scripts | |
parent | 3d7c155ff801d32a65a922b97f1e46b481120e90 (diff) | |
download | openembedded-core-5d5fab77cf9616bf62023c202b38f309f8bbf189.tar.gz openembedded-core-5d5fab77cf9616bf62023c202b38f309f8bbf189.tar.bz2 openembedded-core-5d5fab77cf9616bf62023c202b38f309f8bbf189.tar.xz openembedded-core-5d5fab77cf9616bf62023c202b38f309f8bbf189.zip |
scripts: Allow passing multiple parameters to the autobuilder
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4370 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-autobuild | 8 | ||||
-rwxr-xr-x | scripts/poky-env-internal | 11 |
2 files changed, 9 insertions, 10 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild index 1dd31e2a8..752e0a7bb 100755 --- a/scripts/poky-autobuild +++ b/scripts/poky-autobuild @@ -31,13 +31,11 @@ if [ "xpreamble" = "x$1" ]; then exit 0 fi -BBTARGET="$1" -shift - +BDIR="build" . ./scripts/poky-env-internal POSTPROCESS=`which poky-autobuild-postprocess` -if [ "xcomplete" = "x$BBTARGET" ]; then +if [ "xcomplete" = "x$1" ]; then touch ./tmp/deploy/images/images-complete chmod a+w ./tmp/deploy/images/images-complete cd .. @@ -59,7 +57,7 @@ if [ ! -e "$CONFFILE" ]; then echo 'DL_DIR = "/srv/poky/sources"' >> "$CONFFILE" fi -bitbake $BBTARGET +bitbake $@ cd .. diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index 489956ebc..78646e3c6 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal @@ -23,11 +23,12 @@ # Also update the locations at the top of conf/local.conf OEROOT=`pwd` - -if [ "x$1" = "x" ]; then - BDIR="build" -else - BDIR="$1" +if [ "x$BDIR" = "x" ]; then + if [ "x$1" = "x" ]; then + BDIR="build" + else + BDIR="$1" + fi fi BBDIR="$OEROOT/bitbake/" |