fix collection of vmx images
[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 ; 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         for imgtype in $imagetype ; do
121             case "$imgtype" in
122                 oem)
123                             pushd $BUILD_ROOT/$TOPDIR/KIWI-oem > /dev/null
124                     echo "compressing images... "
125                     tar cvjfS $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum-raw.tar.bz2 \
126                       --exclude=$imagename.$imagearch-$imageversion.iso \
127                       --exclude=$imagename.$imagearch-$imageversion.raw \
128                       * || cleanup_and_exit 1
129                     if [ -e $imagename.$imagearch-$imageversion.iso ]; then
130                       echo "Copy iso file and create md5..."
131                       mv $imagename.$imagearch-$imageversion.iso \
132                          $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum.iso || cleanup_and_exit 1
133                               pushd $BUILD_ROOT/$TOPDIR/KIWI > /dev/null
134                       md5sum $imagename.$imagearch-$imageversion$buildnum.iso \
135                              > "$imagename.$imagearch-$imageversion$buildnum.iso.md5" || cleanup_and_exit 1
136                       popd > /dev/null
137                     fi
138                     if [ -e $imagename.$imagearch-$imageversion.raw ]; then
139                       echo "Copy raw file and create md5..."
140                       mv $imagename.$imagearch-$imageversion.raw \
141                          $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum.raw || cleanup_and_exit 1
142                               pushd $BUILD_ROOT/$TOPDIR/KIWI > /dev/null
143                       bzip2 $imagename.$imagearch-$imageversion$buildnum.raw && \
144                       md5sum $imagename.$imagearch-$imageversion$buildnum.raw.bz2 \
145                              > "$imagename.$imagearch-$imageversion$buildnum.raw.bz2.md5" || cleanup_and_exit 1
146                       popd > /dev/null
147                     fi
148                     popd > /dev/null
149                     ;;
150                 vmx)
151                     pushd $BUILD_ROOT/$TOPDIR/KIWI-vmx > /dev/null
152                     echo "compressing images... "
153                     # This option has a number of format parameters
154                     FILES=""
155                     for i in $imagename.$imagearch-$imageversion.vmx $imagename.$imagearch-$imageversion.vmdk $imagename.$imagearch-$imageversion.ovf \
156                          $imagename.$imagearch-$imageversion-disk*.vmdk $imagename.$imagearch-$imageversion.raw $imagename.$imagearch-$imageversion.xenconfig; do
157                         ls $i >& /dev/null && FILES="$FILES $i"
158                     done
159                     tar cvjfS $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum-vmx.tar.bz2 \
160                         $FILES || cleanup_and_exit 1
161                     popd > /dev/null
162                     ;;
163                 xen)
164                     pushd $BUILD_ROOT/$TOPDIR/KIWI-xen > /dev/null
165                     echo "compressing images... "
166                     tar cvjfS $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum-xen.tar.bz2 \
167                       `grep ^kernel $imagename.$imagearch-$imageversion.xenconfig | cut -d'"'  -f2` \
168                       `grep ^ramdisk $imagename.$imagearch-$imageversion.xenconfig | cut -d'"'  -f2` \
169                       $imagename.$imagearch-$imageversion.xenconfig \
170                       $imagename.$imagearch-$imageversion || cleanup_and_exit 1
171                             popd > /dev/null
172                     ;;
173                 pxe)
174                     pushd $BUILD_ROOT/$TOPDIR/KIWI-pxe > /dev/null
175                     echo "compressing images... "
176                     tar cvjfS $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum-pxe.tar.bz2 \
177                       $imagename.$imagearch-$imageversion* \
178                       initrd-* || cleanup_and_exit 1
179                             popd > /dev/null
180                     ;;
181                 iso)
182                     pushd $BUILD_ROOT/$TOPDIR/KIWI-iso > /dev/null
183                     echo "creating md5 sum for iso images... "
184                         for i in *.iso; do
185                       pushd $BUILD_ROOT/$TOPDIR/KIWI/ > /dev/null
186                             mv $BUILD_ROOT/$TOPDIR/KIWI-iso/$i ${i%.iso}$buildnum.iso || cleanup_and_exit 1
187                             md5sum ${i%.iso}$buildnum.iso > ${i%.iso}$buildnum.iso.md5 || cleanup_and_exit 1
188                               popd > /dev/null
189                     done
190                             popd > /dev/null
191                     ;;
192                 *)
193                     pushd $BUILD_ROOT/$TOPDIR/KIWI-$imgtype > /dev/null
194                     echo "compressing unkown images... "
195                     tar cvjfS $BUILD_ROOT/$TOPDIR/KIWI/$imagename.$imagearch-$imageversion$buildnum-$imgtype.tar.bz2 \
196                       * || cleanup_and_exit 1
197                             popd > /dev/null
198                     ;;
199             esac
200         done
201     fi
202 }