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
This commit is contained in:
Richard Purdie 2007-03-23 10:58:00 +00:00
parent 222597e4f5
commit 1befef8773
1 changed files with 12 additions and 0 deletions

View File

@ -24,6 +24,18 @@
# exit 1
#fi
if [ "xpreamble" = "x$1" ]; then
mkdir -p ./build/tmp/deploy/images
svn info >> ./build/tmp/deploy/images/svninfo
exit 0
fi
if [ "xcomplete" = "x$1" ]; then
touch ./build/tmp/deploy/images/images-complete
chmod a+w ./build/tmp/deploy/images/images-complete
exit 0
fi
. ./scripts/poky-env-internal
bitbake $1