diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-29 21:01:34 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-29 21:01:34 +0000 |
commit | da27611bc9c8506b9411ce9968f71bd229ca0654 (patch) | |
tree | 4318cc51f6a80d489e8cadd848ea949d4677652c /scripts/poky-autobuild | |
parent | 5d5fab77cf9616bf62023c202b38f309f8bbf189 (diff) | |
download | openembedded-core-da27611bc9c8506b9411ce9968f71bd229ca0654.tar.gz openembedded-core-da27611bc9c8506b9411ce9968f71bd229ca0654.tar.bz2 openembedded-core-da27611bc9c8506b9411ce9968f71bd229ca0654.tar.xz openembedded-core-da27611bc9c8506b9411ce9968f71bd229ca0654.zip |
poky-autobuild: Attempt to clean up scripts slightly
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4371 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-autobuild')
-rwxr-xr-x | scripts/poky-autobuild | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild index 752e0a7bb..d283b668d 100755 --- a/scripts/poky-autobuild +++ b/scripts/poky-autobuild @@ -1,6 +1,6 @@ #!/bin/sh -# Poky Build Enviroment Setup Script +# Poky Automated Build Server Enviroment Setup Script # # Copyright (C) 2006-2007 OpenedHand Ltd. # @@ -18,11 +18,17 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -#if test x"$0" = x"./poky-init-build-env"; then -# echo "Error: Run via '. ./poky-init-build-env'" -# exit 1 -#fi +TARGETDIR=/srv/poky/autobuild-output +CURRDIR=`pwd` +if [ "$CURRDIR" = "/srv/poky/autobuild/full-shihtzu/build" ]; then + ABTARGET="poky" +elif [ "$CURRDIR" = "/srv/poky/autobuild/full-bleeding-shihtzu/build" ]; then + ABTARGET="poky-bleeding" +elif [ "$CURRDIR" = "/srv/poky/autobuild/toolchain-shihtzu/build" ]; then + ABTARGET="toolchain" +elif [ "$CURRDIR" = "/srv/poky/autobuild/incremental-shihtzu/build" ]; then + ABTARGET="incremental" +fi if [ "xpreamble" = "x$1" ]; then mkdir -p ./build/tmp/deploy/images @@ -38,9 +44,9 @@ POSTPROCESS=`which poky-autobuild-postprocess` if [ "xcomplete" = "x$1" ]; then touch ./tmp/deploy/images/images-complete chmod a+w ./tmp/deploy/images/images-complete - cd .. if [ "x$POSTPROCESS" != "x" ]; then - $POSTPROCESS `pwd` + cd .. + $POSTPROCESS $ABTARGET $TARGETDIR fi exit 0 fi @@ -59,9 +65,8 @@ fi bitbake $@ -cd .. - if [ "x$POSTPROCESS" != "x" ]; then - $POSTPROCESS `pwd` + cd .. + $POSTPROCESS $ABTARGET $TARGETDIR fi |