summaryrefslogtreecommitdiffstats
path: root/scripts/poky-autobuild-postprocess
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/poky-autobuild-postprocess')
-rwxr-xr-xscripts/poky-autobuild-postprocess135
1 files changed, 0 insertions, 135 deletions
diff --git a/scripts/poky-autobuild-postprocess b/scripts/poky-autobuild-postprocess
deleted file mode 100755
index cbe5203fb5..0000000000
--- a/scripts/poky-autobuild-postprocess
+++ /dev/null
@@ -1,135 +0,0 @@
1#!/bin/sh
2
3# Poky Automated Build Server Post Processing Script
4#
5# Copyright (C) 2006-2007 OpenedHand Ltd.
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
21ABTARGET=$1
22TARGETDIR=$2
23
24cd ./build/tmp/deploy/
25
26LASTREV=`tail images/svninfo | grep Revision | cut -f 2 -d ' '`
27DEST=$TARGETDIR/$ABTARGET/$LASTREV/
28
29mkdir -p $DEST
30
31COMPRESS_FILES=()
32FILES=()
33
34if [ "x$ABTARGET" = "xpoky-bleeding" ]; then
35 COMPRESS_FILES=(
36 poky-image-sato-qemuarm-*.rootfs.ext2
37 )
38
39 FILES=(
40 svninfo
41 `readlink images/zImage-akita.bin`
42 `readlink images/zImage-qemuarm.bin`
43 updater.sh.akita
44 poky-image-sato-akita-*.rootfs.summary.jffs2
45 poky-image-sato-qemuarm-*.rootfs.tar.bz2
46 )
47fi
48
49if [ "x$ABTARGET" = "xtoolchain" ]; then
50 FILES=(
51 svninfo
52 poky-*-toolchain-*.tar.bz2
53 )
54fi
55
56if [ "x$ABTARGET" = "xpoky" ]; then
57 COMPRESS_FILES=(
58 poky-image-sdk-qemuarm-*.rootfs.ext2
59 poky-image-sdk-qemux86-*.rootfs.ext2
60 poky-image-minimal-qemuarm-*.rootfs.ext2
61 poky-image-minimal-qemux86-*.rootfs.ext2
62 poky-image-sato-cd-*.iso
63 )
64
65 FILES=(
66 svninfo
67 `readlink images/zImage-akita.bin`
68 `readlink images/zImage-c7x0.bin`
69 `readlink images/zImage-qemuarm.bin`
70 `readlink images/zImage-spitz.bin`
71 `readlink images/zImage-nokia800.bin`
72 `readlink images/bzImage-qemux86.bin`
73 `readlink images/bzImage-netbook.bin`
74 `readlink images/zImage-htcuniversal.bin`
75 `readlink images/zImage-mx31litekit.bin`
76 `readlink images/zImage-mx31ads.bin`
77 `readlink images/zImage-nokia770.bin`
78 `readlink images/zImage-zylonite.bin`
79 `readlink images/zImage-cm-x270.bin`
80 `readlink images/uImage-em-x270.bin`
81 `readlink images/uImage-mx31phy.bin`
82 `readlink images/uImage-neo1973-latest.bin`
83 `readlink images/uImage-om-gta01.bin`
84 `readlink images/uImage-om-gta02.bin`
85 updater.sh.akita
86 updater.sh.c7x0
87 updater.sh.spitz
88 gnu-tar
89 poky-image-live-netbook-*.hddimg
90 poky-image-minimal-live-netbook-*.hddimg
91 poky-image-sato-akita-*.rootfs.summary.jffs2
92 poky-image-sato-c7x0-*.rootfs.jffs2
93 poky-image-sato-spitz-*.rootfs.tar.gz
94 poky-image-sdk-qemuarm-*.rootfs.tar.bz2
95 poky-image-sdk-qemux86-*.rootfs.tar.bz2
96 poky-image-minimal-qemuarm-*.rootfs.tar.bz2
97 poky-image-minimal-qemux86-*.rootfs.tar.bz2
98 poky-image-sdk-spitz-*.rootfs.tar.gz
99 poky-image-sdk-nokia800-*.rootfs.jffs2
100 poky-image-sato-nokia770-*.rootfs.jffs2
101 poky-image-sato-zylonite-*.rootfs.jffs2
102 poky-image-sato-cm-x270-*.rootfs.jffs2
103 poky-image-sato-em-x270-*.rootfs.jffs2
104 poky-image-sato-mx31litekit-*.rootfs.tar.gz
105 poky-image-sato-htcuniversal-*.rootfs.tar.gz
106 poky-image-sato-om-gta01-*.rootfs.jffs2
107 poky-image-sato-om-gta02-*.rootfs.jffs2
108 poky-image-sato-mx31phy-*.jffs2
109 poky-image-sato-mx31ads-*.jffs2
110 `readlink images/updater-em-x270.ext2`
111 )
112fi
113
114for FILE in ${FILES[@]}; do
115 for FILE2 in `find -name $FILE`; do
116 if [ ! -e "$DEST/$FILE2" ]; then
117 cp $FILE2 $DEST
118 fi
119 done
120done
121
122for FILE in ${COMPRESS_FILES[@]}; do
123 for FILE2 in `find -name $FILE`; do
124 if [ ! -e "$DEST/$FILE2.bz2" ]; then
125 bzip2 $FILE2
126 cp $FILE2.bz2 $DEST
127 fi
128 done
129done
130
131if [ -e ./images/images-complete ]; then
132 touch $DEST/complete
133fi
134chmod a+w -R $DEST 2> /dev/null || true
135