Support $SUITE and fix usage of chroot in cmdline
[grml-live.git] / grml-live
1 #!/bin/bash
2 # Filename:      grml-live
3 # Purpose:       build process script for generating a (grml based) Linux Live-ISO
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Sun Sep 16 23:47:55 CEST 2007 [mika]
8 ################################################################################
9
10 # read configuration files, set some misc variables {{{
11
12 export LANG=C
13 export LC_ALL=C
14
15 # exit on any error:
16 set -e
17
18 # we need root permissions for the build-process:
19 if [ "$(id -u 2>/dev/null)" != 0 ] ; then
20    echo "Error: please run this script with uid 0 (root)." >&2
21    exit 1
22 fi
23
24 # make sure they are not set by default
25 VERBOSE=''
26 FORCE=''
27
28 # source main configuration file:
29 . /etc/grml/grml-live.conf
30
31 PN=$(basename $0)
32 # TMPFILE=$(mktemp)
33 # }}}
34
35 # clean exit {{{
36 bailout() {
37   # rm -f "$TMPFILE"
38   [ -n "$1" ] && EXIT="$1" || EXIT="1"
39   [ -n "$2" ] && echo "$2">&2
40   exit "$EXIT"
41 }
42 trap bailout 1 2 3 15
43 # }}}
44
45 # check for important variables {{{
46 [ -n "$GRML_FAI_CONFIG" ] || GRML_FAI_CONFIG=/etc/grml/fai
47 [ -n "$HOSTNAME" ] || HOSTNAME=grml
48 [ -n "$USERNAME" ] || USERNAME=grml
49 [ -n "$CLASSES" ]  || CLASSES="GRML,I386"
50 [ -n "$TARGET" ] || bailout 1 "${PN}: \$TARGET not specified. Please adjust /etc/grml/grml-live.conf. Exiting."
51 # }}}
52
53 # usage information {{{
54 usage()
55 {
56   echo "
57 $PN - build process script for generating a (grml based) Linux Live-ISO
58
59 Usage: $PN [-c <classe[s]>] [-t <target_directory>] [-F] [-h|--help] [additional_arguments_for_fai]
60
61 Usage examples:
62
63     $PN
64     $PN -c GRML,I386 -t /dev/shm/grml
65     $PN -c GRML,GRML_X,I386 -t /grml/
66     $PN -c GRML,I386
67
68 More details: man grml-live
69               /usr/share/doc/grml-live/grml-live.html
70
71 Please send your bug reports, feedback,.. to the grml-team.
72 http://grml.org/bugs/
73 "
74 }
75 # }}}
76
77 # command line parsing {{{
78
79 while getopts "c:s:t:Fhv" opt; do
80   case "$opt" in
81     c) CLASSES="$OPTARG" ;;
82     # f) FLAVOUR="$OPTARG" ;; # TODO
83     F) FORCE=1 ;;
84     h) usage ; bailout 0 ;;
85     s) SUITE="$OPTARG" ;;
86     t) TARGET="$OPTARG"
87        CHROOT_TARGET="$TARGET/grml_chroot"
88        BUILD_TARGET="$TARGET/grml_cd"
89        ISO_TARGET="$TARGET/grml_isos"
90        ;;
91     v) VERBOSE="-v" ;;
92     ?) echo "invalid option -$OPTARG" >&2; bailout 1 ;;
93   esac
94 done
95 shift $(($OPTIND - 1))  # set ARGV to the first not parsed commandline parameter
96
97 # }}}
98
99 # some misc checks before executing FAI {{{
100 [ -n "$CLASSES" ] || bailout 1 "Error: \$CLASSES unset, please set it in /etc/grml/grml-live.conf or
101 specify it on the command line using the -c|--classes option."
102 [ -n "$TARGET" ] || bailout 1 "Error: \$TARGET unset, please set it in /etc/grml/grml-live.conf or
103 specify it on the command line using the -t|--target option."
104 # }}}
105
106 # ask user whether the setup is ok {{{
107 if [ -z "$FORCE" ] ; then
108    echo
109    echo "$PN - check your configuration (or invoke using -F to force execution without prompting)"
110    echo
111    echo "  FAI classes:       $CLASSES"
112    echo "  output directory:  $TARGET"
113    [ -n "$CHROOT_TARGET" ] && echo "  chroot target:     $CHROOT_TARGET"
114    [ -n "$BUILD_TARGET" ]  && echo "  build target:      $BUILD_TARGET"
115    [ -n "$ISO_TARGET" ]    && echo "  ISO target:        $ISO_TARGET"
116    [ -n "$SUITE" ]         && echo "  Debian suite:      $SUITE"
117    [ -n "$FAI_ARGS" ]      && echo "  additional arguments for FAI: $FAI_ARGS"
118    [ -n "$VERBOSE" ]       && echo "  Using VERBOSE mode."
119    echo
120    echo -n "Is this ok for you? [y/N] "
121    read a
122    if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
123       bailout 1 "Exiting as requested."
124    fi
125    echo
126 fi
127 # }}}
128
129 # on-the-fly configuration {{{
130 if [ -n "$GRML_LIVE_SOURCES" ] ; then
131    echo "$GRML_LIVE_SOURCES" > /etc/grml/fai/apt/sources.list
132 fi
133
134 # we assume that it is set to 'etch' by default
135 if [ -n "$SUITE" ] ; then
136    sed -i "s#etch #$SUITE #"   /etc/grml/fai/make-fai-nfsroot.conf
137    sed -i "s#etch #$SUITE #"   /etc/grml/grml-live.conf
138    sed -i "s# etch # $SUITE #" /etc/grml/grml-live.conf
139    sed -i "s# etch # $SUITE #" /etc/grml/fai/apt/sources.list
140 fi
141
142 if [ -n "$FAI_DEBOOTSTRAP" ] ; then
143    sed -i "s#^FAI_DEBOOTSTRAP#FAI_DEBOOTSTRAP=$FAI_DEBOOTSTRAP#" /etc/grml/fai/make-fai-nfsroot.conf
144 fi
145 # }}}
146
147 # CHROOT_TARGET - execute FAI {{{
148 [ -n "$CHROOT_TARGET" ] || CHROOT_TARGET="$TARGET/grml_chroot"
149
150 if [ -d "$CHROOT_TARGET" ] ; then
151    echo "  [x] $CHROOT_TARGET exists already, skipping the stage 'fai dirnstall'"
152 else
153    mkdir "$CHROOT_TARGET" || bailout 5 "Problem with creating $CHROOT_TARGET for FAI"
154    fai $VERBOSE -C "$GRML_FAI_CONFIG" -c"$CLASSES" dirinstall "$CHROOT_TARGET" $FAI_ARGS
155    umount $CHROOT_TARGET/proc 2>/dev/null || /bin/true
156    umount $CHROOT_TARGET/sys  2>/dev/null || /bin/true
157    echo "  [*] Finished execution of stage 'fai dirinstall'"
158 fi
159 # }}}
160
161 # BUILD_TARGET - execute arch specific stuff and squashfs {{{
162 [ -n "$BUILD_TARGET" ] || BUILD_TARGET="$TARGET/grml_cd"
163 mkdir -p "$BUILD_TARGET" || bailout 6 "Problem with creating $BUILD_TARGET for stage ARCH"
164
165 # x86:
166 if [ "$ARCH" = x86 ] ; then
167    if [ -d "$BUILD_TARGET"/boot/isolinux ] ; then
168       echo "  [x] $BUILD_TARGET/boot/isolinux exists already - skipping stage 'boot/isolinux'"
169       continue
170    else
171       mkdir -p "$BUILD_TARGET"/boot/isolinux
172       mkdir "$BUILD_TARGET"/GRML
173       cp /boot/memtest86+.bin                                       "$BUILD_TARGET"/boot/isolinux/memtest
174       cp "$CHROOT_TARGET"/boot/initrd*                              "$BUILD_TARGET"/boot/isolinux/initrd.gz
175       cp "$CHROOT_TARGET"/boot/vmlinuz*                             "$BUILD_TARGET"/boot/isolinux/linux26
176       cp /usr/lib/syslinux/chain.c32                                "$BUILD_TARGET"/boot/isolinux/
177       cp /usr/lib/syslinux/isolinux.bin                             "$BUILD_TARGET"/boot/isolinux/
178       cp /usr/lib/syslinux/memdisk                                  "$BUILD_TARGET"/boot/isolinux/
179       cp /usr/lib/syslinux/menu.c32                                 "$BUILD_TARGET"/boot/isolinux/
180       cp /usr/share/grml-live/x86_files/boot/isolinux/allinone.img  "$BUILD_TARGET"/boot/isolinux/
181       cp /usr/share/grml-live/x86_files/boot/isolinux/balder10.imz  "$BUILD_TARGET"/boot/isolinux/
182       cp /usr/share/grml-live/x86_files/boot/isolinux/boot-beep.msg "$BUILD_TARGET"/boot/isolinux/
183       cp /usr/share/grml-live/x86_files/boot/isolinux/boot.msg      "$BUILD_TARGET"/boot/isolinux/
184       cp /usr/share/grml-live/x86_files/boot/isolinux/f*            "$BUILD_TARGET"/boot/isolinux/
185       cp /usr/share/grml-live/x86_files/boot/isolinux/isolinux.cfg  "$BUILD_TARGET"/boot/isolinux/
186       cp /usr/share/grml-live/x86_files/boot/isolinux/logo.16       "$BUILD_TARGET"/boot/isolinux/
187       cp /usr/share/grml-live/x86_files/boot/isolinux/syslinux.cfg  "$BUILD_TARGET"/boot/isolinux/
188       # minirt26.gz
189       # boot.cat
190       if [ -n "$WINDOWS_BINARIES" ] ; then
191          if [ -d "$BUILD_TARGET"/windows ] ; then
192             echo "  [x] $BUILD_TARGET/windows exists already - skipping stage 'WINDOWS_BINARIES'"
193             return 0
194          else
195             mkdir "$BUILD_TARGET"/windows
196             ( cd "$BUILD_TARGET"/windows
197               for file in pageant plink pscp psftp putty puttygen ; do
198                   wget ${WINDOWS_BINARIES}/${file}.exe
199               done )
200          fi
201       echo "  [*] Finished execution of stage 'WINDOWS_BINARIES'"
202       fi
203    echo "  [*] Finished execution of stage 'boot/isolinux'"
204    fi
205 # amd64:
206 elif [ "$ARCH" = amd64 ] ; then
207     echo 'Warning: gebi, it is your turn. :)'>&2
208 # ppc:
209 elif [ "$ARCH" = powerpc ] ; then
210     echo 'Warning: formorer, it is your turn. :)'>&2
211 # unsuported:
212 else
213    echo 'Warning: Unsupported ARCH, sorry. Want to support it? Contribute!'>&2
214 fi
215
216 if [ -d "$BUILD_TARGET"/live ] ; then
217    echo "  [x] $BUILD_TARGET/live exists already, skipping stage 'squashfs'"
218 else
219    mkdir "$BUILD_TARGET"/live
220    mksquashfs $CHROOT_TARGET/* $BUILD_TARGET/live/grml.squashfs -noappend
221 fi
222 echo "  [*] Finished execution of stage 'squashfs'"
223 # }}}
224
225 # ISO_TARGET - mkisofs {{{
226 [ -n "$ISO_TARGET" ] || ISO_TARGET="$TARGET/grml_isos"
227 if [ -d "$ISO_TARGET" ] ; then
228    echo "  [x] $ISO_TARGET exists already, skipping the stage 'iso build'"
229 else
230    mkdir -p "$ISO_TARGET" || bailout 6 "Problem with creating $ISO_TARGET for stage 'iso build'"
231    ( cd "$BUILD_TARGET" &&
232      mkisofs -V "Debian/etch grml" -publisher 'Michael Prokop <mika@grml.org>' \
233              -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table    \
234              -c boot/isolinux/boot.cat -b boot/isolinux/isolinux.bin      \
235              -o "$ISO_TARGET"/grml_0.0-1.iso .
236    )
237    echo "  [*] Finished execution of stage 'iso build'"
238 fi
239 # }}}
240
241 # finalize {{{
242 echo "  [*] Sucessfully finished execution of $PN"
243 bailout 0
244 # }}}
245
246 ## END OF FILE #################################################################
247 # vim:foldmethod=marker ts=2 ft=sh ai expandtab tw=80 sw=2