diff options
author | Richard Purdie <richard@openedhand.com> | 2007-03-23 10:58:00 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-03-23 10:58:00 +0000 |
commit | 1befef8773194805ffe3dfc0057c2bdee949ec4d (patch) | |
tree | 40afb2b08284e577b637102c63dacda6b8531a16 /scripts/poky-autobuild | |
parent | 222597e4f56b5bc8d8c26c1aebbd24f775733bee (diff) | |
download | poky-1befef8773194805ffe3dfc0057c2bdee949ec4d.tar.gz |
scripts: Add complete and preamble commands to autobuilder scripts
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1389 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-autobuild')
-rwxr-xr-x | scripts/poky-autobuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild index a8f9decc27..8a87d95ecb 100755 --- a/scripts/poky-autobuild +++ b/scripts/poky-autobuild | |||
@@ -24,6 +24,18 @@ | |||
24 | # exit 1 | 24 | # exit 1 |
25 | #fi | 25 | #fi |
26 | 26 | ||
27 | if [ "xpreamble" = "x$1" ]; then | ||
28 | mkdir -p ./build/tmp/deploy/images | ||
29 | svn info >> ./build/tmp/deploy/images/svninfo | ||
30 | exit 0 | ||
31 | fi | ||
32 | |||
33 | if [ "xcomplete" = "x$1" ]; then | ||
34 | touch ./build/tmp/deploy/images/images-complete | ||
35 | chmod a+w ./build/tmp/deploy/images/images-complete | ||
36 | exit 0 | ||
37 | fi | ||
38 | |||
27 | . ./scripts/poky-env-internal | 39 | . ./scripts/poky-env-internal |
28 | 40 | ||
29 | bitbake $1 | 41 | bitbake $1 |