summaryrefslogtreecommitdiffstats
path: root/scripts/poky-autobuild
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/poky-autobuild')
-rwxr-xr-xscripts/poky-autobuild8
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild
index 1dd31e2a84..752e0a7bb0 100755
--- a/scripts/poky-autobuild
+++ b/scripts/poky-autobuild
@@ -31,13 +31,11 @@ if [ "xpreamble" = "x$1" ]; then
31 exit 0 31 exit 0
32fi 32fi
33 33
34BBTARGET="$1" 34BDIR="build"
35shift
36
37. ./scripts/poky-env-internal 35. ./scripts/poky-env-internal
38POSTPROCESS=`which poky-autobuild-postprocess` 36POSTPROCESS=`which poky-autobuild-postprocess`
39 37
40if [ "xcomplete" = "x$BBTARGET" ]; then 38if [ "xcomplete" = "x$1" ]; then
41 touch ./tmp/deploy/images/images-complete 39 touch ./tmp/deploy/images/images-complete
42 chmod a+w ./tmp/deploy/images/images-complete 40 chmod a+w ./tmp/deploy/images/images-complete
43 cd .. 41 cd ..
@@ -59,7 +57,7 @@ if [ ! -e "$CONFFILE" ]; then
59 echo 'DL_DIR = "/srv/poky/sources"' >> "$CONFFILE" 57 echo 'DL_DIR = "/srv/poky/sources"' >> "$CONFFILE"
60fi 58fi
61 59
62bitbake $BBTARGET 60bitbake $@
63 61
64cd .. 62cd ..
65 63