xen images need the initrd files packaged
[platform/upstream/build.git] / build_kiwi.sh
1 #!/bin/bash
2 run_kiwi()
3 {
4     imagetype=$(perl -I$BUILD_DIR -MBuild::Kiwi -e Build::Kiwi::show $BUILD_ROOT/$TOPDIR/SOURCES/$SPECFILE imagetype)
5     imagename=$(perl -I$BUILD_DIR -MBuild::Kiwi -e Build::Kiwi::show $BUILD_ROOT/$TOPDIR/SOURCES/$SPECFILE filename)
6     imageversion=$(perl -I$BUILD_DIR -MBuild::Kiwi -e Build::Kiwi::show $BUILD_ROOT/$TOPDIR/SOURCES/$SPECFILE version)
7     # prepare rpms as source and createrepo on the repositories
8     if test -d $BUILD_ROOT/$TOPDIR/SOURCES/repos -a "$DO_INIT" != false ; then
9         (
10         ln -sf $TOPDIR/SOURCES/repos $BUILD_ROOT/repos
11         cd $BUILD_ROOT/$TOPDIR/SOURCES/repos
12         for r in */* ; do
13             test -L $r && continue
14             test -d $r || continue
15             repo="$TOPDIR/SOURCES/repos/$r/"
16             # create compatibility link for old kiwi versions
17             rc="${r//:/:/}"
18             if test "$rc" != "$r" ; then
19                 rl="${rc//[^\/]}"
20                 rl="${rl//?/../}"
21                 mkdir -p "${rc%/*}"
22                 ln -s $rl$r "${rc%/*}/${rc##*/}"
23                 repo="$TOPDIR/SOURCES/repos/${rc%/*}/${rc##*/}/"
24             fi
25             if test "$imagetype" != product ; then
26                 echo "creating repodata for $repo"
27                 chroot $BUILD_ROOT createrepo "$repo"
28             fi
29         done
30         )
31     fi
32     # unpack root tar
33     for t in $BUILD_ROOT/$TOPDIR/SOURCES/root.tar* ; do
34         test -f $t || continue
35         mkdir -p $BUILD_ROOT/$TOPDIR/SOURCES/root
36         chroot $BUILD_ROOT tar -C $TOPDIR/SOURCES/root -xf "$TOPDIR/SOURCES/${t##*/}"
37     done
38     # fix script permissions
39     chmod a+x $BUILD_ROOT/$TOPDIR/SOURCES/*.sh 2>/dev/null
40     # unpack tar files in image directories
41     if test -d $BUILD_ROOT/$TOPDIR/SOURCES/images ; then
42         (
43         cd $BUILD_ROOT/$TOPDIR/SOURCES/images
44         for r in */* ; do
45             test -L $r && continue
46             test -d $r || continue
47             for t in $r/root.tar* ; do
48                 test -f $t || continue
49                 mkdir -p $r/root
50                 chroot $BUILD_ROOT tar -C $TOPDIR/SOURCES/images/$r/root -xf "$TOPDIR/SOURCES/images/$r/${t##*/}"
51             done
52             # fix script permissions
53             chmod a+x $BUILD_ROOT/$TOPDIR/SOURCES/images/$r/*.sh 2>/dev/null
54             # create compatibility link for old kiwi versions
55             rc="${r//:/:/}"
56             if test "$rc" != "$r" ; then
57                 rl="${rc//[^\/]}"
58                 rl="${rl//?/../}"
59                 mkdir -p "${rc%/*}"
60                 ln -s $rl$r "${rc%/*}/${rc##*/}"
61             fi
62         done
63         )
64     fi
65     rm -f $BUILD_ROOT/$TOPDIR/SOURCES/config.xml
66     ln -s $SPECFILE $BUILD_ROOT/$TOPDIR/SOURCES/config.xml
67     chroot $BUILD_ROOT su -c "kiwi --version" -
68     if test "$imagetype" = product ; then
69         echo "running kiwi --create-instsource..."
70         # runs always as abuild user
71         mkdir -p "$BUILD_ROOT/$TOPDIR/KIWIROOT"
72         chroot "$BUILD_ROOT" chown -R abuild.abuild "$TOPDIR"
73         # --instsource-local is only needed for openSUSE 11.1 and SLE 11 SP0 kiwi.
74         chroot "$BUILD_ROOT" su -c "APPID=- LANG=POSIX /usr/sbin/kiwi --root $TOPDIR/KIWIROOT -v -v --logfile terminal -p $TOPDIR/SOURCES --instsource-local --create-instsource $TOPDIR/SOURCES" - abuild < /dev/null && BUILD_SUCCEEDED=true
75 ### This block is obsolete with current kiwi versions, only needed for kiwi 3.01 version
76 #            for i in $BUILD_ROOT/$TOPDIR/KIWIROOT/main/* ; do
77 #                test -d "$i" || continue
78 #                n="${i##*/}"
79 #                test "$n" = scripts && continue
80 #                test "$n" != "${n%0}" && continue
81 #                chroot $BUILD_ROOT su -c "suse-isolinux $TOPDIR/KIWIROOT/main/$n $TOPDIR/KIWI/$n.iso" - $BUILD_USER
82 #            done
83
84         # move created product to correct destination
85         for i in $BUILD_ROOT/$TOPDIR/KIWIROOT/main/* ; do
86             test -e "$i" || continue
87             f=${i##*/}
88             case $f in
89                 *.iso) mv $i $BUILD_ROOT/$TOPDIR/KIWI/. ;;
90                 scripts) ;;
91                 *0) ;;
92                 *) test -d $i && mv $i $BUILD_ROOT/$TOPDIR/KIWI/. ;;
93             esac
94         done
95     else
96         BUILD_SUCCEEDED=true
97         if [ -z "$RUNNING_IN_VM" ]; then
98             # NOTE: this must be done with the outer system, because it loads the dm-mod kernel modules, which needs to fit to the kernel.
99             echo "starting device mapper for kiwi..."
100             [ -x /etc/init.d/boot.device-mapper ] && /etc/init.d/boot.device-mapper start
101         fi
102         for imgtype in $imagetype ; do
103             echo "running kiwi --prepare for $imgtype..."
104             # Do not use $BUILD_USER here, since we always need root permissions
105             if chroot $BUILD_ROOT su -c "cd $TOPDIR/SOURCES && kiwi --prepare $TOPDIR/SOURCES --logfile terminal --root $TOPDIR/KIWIROOT-$imgtype" - root < /dev/null ; then
106                 echo "running kiwi --create for $imgtype..."
107                 mkdir -p $BUILD_ROOT/$TOPDIR/KIWI-$imgtype
108                 chroot $BUILD_ROOT su -c "cd $TOPDIR/SOURCES && kiwi --create $TOPDIR/KIWIROOT-$imgtype --logfile terminal --type $imgtype -d $TOPDIR/KIWI-$imgtype" - root < /dev/null || cleanup_and_exit 1
109             else
110                 cleanup_and_exit 1
111             fi
112         done
113
114         # create tar.gz of images, in case it makes sense
115         imagearch=`uname -m`
116         buildnum=""
117           if test -n "$RELEASE"; then
118             buildnum="-Build$RELEASE"
119         fi
120         imageout="$imagename.$imagearch-$imageversion"
121         for imgtype in $imagetype ; do
122             case "$imgtype" in
123                 oem)
124                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
125 echo "compressing oem images... "
126 cd /$TOPDIR/KIWI-oem
127 if [ -e "$imageout.iso" ]; then
128         echo "take iso file and create sha256..."
129         mv "$imageout.iso" "/$TOPDIR/KIWI/$imageout$buildnum.iso"
130         pushd /$TOPDIR/KIWI
131         sha256sum "$imageout$buildnum.iso" > "$imageout$buildnum.iso.sha256"
132         popd
133 fi
134 if [ -e "$imageout.raw" ]; then
135         mv "$imageout.raw" "/$TOPDIR/KIWI/$imageout$buildnum.raw"
136         pushd /$TOPDIR/KIWI
137         echo "bzip2 raw file..."
138         bzip2 "$imageout$buildnum.raw"
139         echo "Create sha256 file..."
140         sha256sum "$imageout$buildnum.raw.bz2" > "$imageout$buildnum.raw.bz2.sha256"
141         popd
142 fi
143
144 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-raw.tar.bz2" \
145         --exclude="$imageout.iso" --exclude="$imageout.raw" *
146 cd /$TOPDIR/KIWI
147 sha256sum "$imageout$buildnum-raw.tar.bz2" > "$imageout$buildnum-raw.tar.bz2.sha256"
148 EOF
149                     ;;
150                 vmx)
151                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
152 echo "compressing vmx images... "
153 cd /$TOPDIR/KIWI-vmx
154 # This option has a number of format parameters
155 VMXFILES=""
156 SHAFILES=""
157 for i in "$imageout.vmx" "$imageout.vmdk" "$imageout-disk*.vmdk"; do
158         ls \$i >& /dev/null && VMXFILES="\$VMXFILES \$i"
159 done
160 if [ -n "\$VMXFILES" ]; then
161         tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-vmx.tar.bz2" \$VMXFILES
162         SHAFILES="\$SHAFILES $imageout$buildnum-vmx.tar.bz2"
163 fi
164
165 if [ -e "$imageout.xenconfig" ]; then
166         tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-vmx.tar.bz2" $imageout.xenconfig $imageout.raw initrd-*
167         SHAFILES="\$SHAFILES $imageout$buildnum-vmx.tar.bz2"
168 fi
169 for i in "$imageout.ovf"; do
170         [ -e \$i ] && SHAFILES="\$SHAFILES \$i"
171 done
172 # FIXME: do we need a single .raw file in any case ?
173
174 cd /$TOPDIR/KIWI
175 if [ -n "\$SHAFILES" ]; then
176         for i in \$SHAFILES; do
177                 echo "Create sha256 file..."
178                 sha256sum "\$i" > "\$i.sha256"
179         done
180 fi
181 EOF
182                     ;;
183                 xen)
184                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
185 echo "compressing xen images... "
186 cd /$TOPDIR/KIWI-xen
187 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-xen.tar.bz2" \
188         `grep ^kernel $imageout.xenconfig | cut -d'"'  -f2` \
189         `grep ^ramdisk $imageout.xenconfig | cut -d'"'  -f2` \
190         "$imageout.xenconfig" \
191         "$imageout"
192 echo "Create sha256 file..."
193 cd $TOPDIR/KIWI
194 sha256sum "$imageout$buildnum-xen.tar.bz2" > "$imageout$buildnum-xen.tar.bz2.sha256"
195 EOF
196                     ;;
197                 pxe)
198                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
199 echo "compressing pxe images... "
200 cd /$TOPDIR/KIWI-pxe
201 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-pxe.tar.bz2" "$imageout"* initrd-*"
202 echo "Create sha256 file..."
203 cd $TOPDIR/KIWI
204 sha256sum "$imageout$buildnum-pxe.tar.bz2" > "$imageout$buildnum-pxe.tar.bz2.sha256"
205 EOF
206                     ;;
207                 iso)
208                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
209 cd /$TOPDIR/KIWI-iso
210 for i in *.iso; do
211         mv "\$i" "/$TOPDIR/KIWI/\${i%.iso}$buildnum.iso"
212 done
213 echo "creating sha256 sum for iso images... "
214 cd $TOPDIR/KIWI
215 for i in *.iso; do
216         sha256sum "\$i" > "\$i.sha256"
217 done
218 EOF
219                     ;;
220                 *)
221                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
222 echo "compressing unkown images... "
223 cd /$TOPDIR/KIWI-$imgtype
224 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-$imgtype.tar.bz2" *
225 echo "Create sha256 file..."
226 cd /$TOPDIR/KIWI
227 sha256sum "$imageout$buildnum-$imgtype.tar.bz2" > "$imageout$buildnum-$imgtype.tar.bz2.sha256"
228 EOF
229                     ;;
230             esac
231             chroot $BUILD_ROOT su -c "sh -e -x /kiwi_post.sh" || cleanup_and_exit 1
232             rm -f $BUILD_ROOT/kiwi_post.sh
233         done
234     fi
235 }