build_kiwi fix for vmx
[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 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-raw.tar.bz2" \
128         --exclude="$imageout.iso" --exclude="$imageout.raw" *
129
130 cd /$TOPDIR/KIWI
131 sha256sum "$imageout$buildnum-raw.tar.bz2" > "$imageout$buildnum-raw.tar.bz2.sha256"
132
133 if [ -e "$imageout.iso" ]; then
134         echo "take iso file and create sha256..."
135         mv "$imageout.iso" "/$TOPDIR/KIWI/$imageout$buildnum.iso"
136         sha256sum "$imageout$buildnum.iso" > "$imageout$buildnum.iso.sha256"
137 fi
138
139 if [ -e "$imageout.raw" ]; then
140         mv "$imageout.raw" "/$TOPDIR/KIWI/$imageout$buildnum.raw"
141         echo "bzip2 raw file..."
142         bzip2 "$imageout$buildnum.raw"
143         echo "Create sha256 file..."
144         sha256sum "$imageout$buildnum.raw.bz2" > "$imageout$buildnum.raw.bz2.sha256"
145 fi
146 EOF
147                     ;;
148                 vmx)
149                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
150 echo "compressing vmx images... "
151 cd /$TOPDIR/KIWI-vmx
152 # This option has a number of format parameters
153 FILES=""
154 for i in "$imageout.vmx" "$imageout.vmdk" "$imageout.ovf" "$imageout-disk*.vmdk" "$imageout.xenconfig" ; do
155         ls \$i >& /dev/null && FILES="\$FILES \$i"
156 done
157 # kiwi is not removing the .rar file, if a different output format is defined. Do not include it by default.
158 [ -z "\$FILES" ] && FILES="$imageout.raw"
159
160 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-vmx.tar.bz2" \$FILES
161 cd /$TOPDIR/KIWI
162 echo "Create sha256 file..."
163 sha256sum "$imageout$buildnum-vmx.tar.bz2" > "$imageout$buildnum-vmx.tar.bz2.sha256"
164 EOF
165                     ;;
166                 xen)
167                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
168 echo "compressing xen images... "
169 cd /$TOPDIR/KIWI-xen
170 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-xen.tar.bz2" \
171         `grep ^kernel $imageout.xenconfig | cut -d'"'  -f2` \
172         `grep ^ramdisk $imageout.xenconfig | cut -d'"'  -f2` \
173         "$imageout.xenconfig" \
174         "$imageout"
175 echo "Create sha256 file..."
176 cd $TOPDIR/KIWI
177 sha256sum "$imageout$buildnum-xen.tar.bz2" > "$imageout$buildnum-xen.tar.bz2.sha256"
178 EOF
179                     ;;
180                 pxe)
181                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
182 echo "compressing pxe images... "
183 cd /$TOPDIR/KIWI-pxe
184 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-pxe.tar.bz2" "$imageout"* initrd-*"
185 echo "Create sha256 file..."
186 cd $TOPDIR/KIWI
187 sha256sum "$imageout$buildnum-pxe.tar.bz2" > "$imageout$buildnum-pxe.tar.bz2.sha256"
188 EOF
189                     ;;
190                 iso)
191                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
192 cd /$TOPDIR/KIWI-iso
193 for i in *.iso; do
194         mv "\$i" "/$TOPDIR/KIWI/\${i%.iso}$buildnum.iso"
195 done
196 echo "creating sha256 sum for iso images... "
197 cd $TOPDIR/KIWI
198 for i in *.iso; do
199         sha256sum "\$i" > "\$i.sha256"
200 done
201 EOF
202                     ;;
203                 *)
204                     cat > $BUILD_ROOT/kiwi_post.sh << EOF
205 echo "compressing unkown images... "
206 cd /$TOPDIR/KIWI-$imgtype
207 tar cvjfS "/$TOPDIR/KIWI/$imageout$buildnum-$imgtype.tar.bz2" *
208 echo "Create sha256 file..."
209 cd /$TOPDIR/KIWI
210 sha256sum "$imageout$buildnum-$imgtype.tar.bz2" > "$imageout$buildnum-$imgtype.tar.bz2.sha256"
211 EOF
212                     ;;
213             esac
214             chroot $BUILD_ROOT su -c "sh -e -x /kiwi_post.sh" || cleanup_and_exit 1
215             rm -f $BUILD_ROOT/kiwi_post.sh
216         done
217     fi
218 }