1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 00:39:46 +00:00

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
This commit is contained in:
Richard Purdie
2008-04-29 21:01:34 +00:00
parent 5d5fab77cf
commit da27611bc9
2 changed files with 43 additions and 31 deletions
+16 -11
View File
@@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# Poky Build Enviroment Setup Script # Poky Automated Build Server Enviroment Setup Script
# #
# Copyright (C) 2006-2007 OpenedHand Ltd. # Copyright (C) 2006-2007 OpenedHand Ltd.
# #
@@ -18,11 +18,17 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
TARGETDIR=/srv/poky/autobuild-output
#if test x"$0" = x"./poky-init-build-env"; then CURRDIR=`pwd`
# echo "Error: Run via '. ./poky-init-build-env'" if [ "$CURRDIR" = "/srv/poky/autobuild/full-shihtzu/build" ]; then
# exit 1 ABTARGET="poky"
#fi 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 if [ "xpreamble" = "x$1" ]; then
mkdir -p ./build/tmp/deploy/images mkdir -p ./build/tmp/deploy/images
@@ -38,9 +44,9 @@ POSTPROCESS=`which poky-autobuild-postprocess`
if [ "xcomplete" = "x$1" ]; then if [ "xcomplete" = "x$1" ]; then
touch ./tmp/deploy/images/images-complete touch ./tmp/deploy/images/images-complete
chmod a+w ./tmp/deploy/images/images-complete chmod a+w ./tmp/deploy/images/images-complete
cd ..
if [ "x$POSTPROCESS" != "x" ]; then if [ "x$POSTPROCESS" != "x" ]; then
$POSTPROCESS `pwd` cd ..
$POSTPROCESS $ABTARGET $TARGETDIR
fi fi
exit 0 exit 0
fi fi
@@ -59,9 +65,8 @@ fi
bitbake $@ bitbake $@
cd ..
if [ "x$POSTPROCESS" != "x" ]; then if [ "x$POSTPROCESS" != "x" ]; then
$POSTPROCESS `pwd` cd ..
$POSTPROCESS $ABTARGET $TARGETDIR
fi fi
+27 -20
View File
@@ -1,30 +1,37 @@
#!/bin/sh #!/bin/sh
TARGETDIR=/srv/poky/autobuild-output # Poky Automated Build Server Post Processing Script
if [ "$1" = "/srv/poky/autobuild/full-shihtzu/build" ]; then #
DISTRO="poky" # Copyright (C) 2006-2007 OpenedHand Ltd.
fi #
if [ "$1" = "/srv/poky/autobuild/full-bleeding-shihtzu/build" ]; then # This program is free software; you can redistribute it and/or modify
DISTRO="poky-bleeding" # it under the terms of the GNU General Public License as published by
fi # the Free Software Foundation; either version 2 of the License, or
if [ "$1" = "/srv/poky/autobuild/toolchain-shihtzu/build" ]; then # (at your option) any later version.
DISTRO="toolchain" #
fi # This program is distributed in the hope that it will be useful,
if [ "$1" = "/srv/poky/autobuild/incremental-shihtzu/build" ]; then # but WITHOUT ANY WARRANTY; without even the implied warranty of
DISTRO="incremental" # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fi # GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
cd $1/build/tmp/deploy/ ABTARGET=$1
TARGETDIR=$2
cd ./build/tmp/deploy/
LASTREV=`tail images/svninfo | grep Revision | cut -f 2 -d ' '` LASTREV=`tail images/svninfo | grep Revision | cut -f 2 -d ' '`
DEST=$TARGETDIR/$DISTRO/$LASTREV/ DEST=$TARGETDIR/$ABTARGET/$LASTREV/
mkdir -p $DEST mkdir -p $DEST
COMPRESS_FILES=() COMPRESS_FILES=()
FILES=() FILES=()
if [ "x$DISTRO" = "xpoky-bleeding" ]; then if [ "x$ABTARGET" = "xpoky-bleeding" ]; then
COMPRESS_FILES=( COMPRESS_FILES=(
poky-image-sato-qemuarm-*.rootfs.ext2 poky-image-sato-qemuarm-*.rootfs.ext2
) )
@@ -39,14 +46,14 @@ if [ "x$DISTRO" = "xpoky-bleeding" ]; then
) )
fi fi
if [ "x$DISTRO" = "xtoolchain" ]; then if [ "x$ABTARGET" = "xtoolchain" ]; then
FILES=( FILES=(
svninfo svninfo
poky-*-toolchain-*.tar.bz2 poky-*-toolchain-*.tar.bz2
) )
fi fi
if [ "x$DISTRO" = "xpoky" ]; then if [ "x$ABTARGET" = "xpoky" ]; then
COMPRESS_FILES=( COMPRESS_FILES=(
poky-image-sdk-qemuarm-*.rootfs.ext2 poky-image-sdk-qemuarm-*.rootfs.ext2
poky-image-sdk-qemux86-*.rootfs.ext2 poky-image-sdk-qemux86-*.rootfs.ext2
@@ -116,8 +123,8 @@ for FILE in ${COMPRESS_FILES[@]}; do
done done
done done
if [ -e ./images-complete ]; then if [ -e ./images/images-complete ]; then
touch $DEST/complete touch $DEST/complete
fi fi
chmod a+w -R $DEST || true chmod a+w -R $DEST 2> /dev/null || true