93b4bd45a8a66dc1b6ca558ca1d7b24bf2104c89
[grml-live.git] / grml-live
1 #!/bin/sh
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: Sat Sep 15 20:58:00 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 VERBOSE=''
25 FORCE=''
26
27 # source main configuration file:
28 . /etc/grml/grml-live.conf
29
30 PN=$(basename $0)
31 TMPFILE=$(mktemp)
32 # }}}
33
34 # clean exit {{{
35 bailout() {
36   rm -f "$TMPFILE"
37   [ -n "$1" ] && EXIT="$1" || EXIT="1"
38   [ -n "$2" ] && echo "$2">&2
39   exit "$EXIT"
40 }
41 trap bailout 1 2 3 15
42 # }}}
43
44 # check for important variables {{{
45 [ -n "$GRML_FAI_CONFIG" ] || GRML_FAI_CONFIG=/etc/grml/fai
46 [ -n "$HOSTNAME" ] || HOSTNAME=grml
47 [ -n "$USERNAME" ] || USERNAME=grml
48 [ -n "$CLASSES" ] || CLASSES="GRML"
49 [ -n "$CHROOT_TARGET" ] || bailout 1 "${PN}: \$CHROOT_TARGET not specified. Please adjust /etc/grml/grml-live.conf. Exiting."
50 # }}}
51
52 # usage information {{{
53 usage()
54 {
55   echo "
56 $PN - build process script for generating a (grml based) Linux Live-ISO
57
58 Usage: $PN [-c <classe[s]>] [-t <target_directory>] [-F] [-h|--help] [additional_arguments_for_fai]
59
60 Usage examples:
61
62     $PN
63     $PN -c GRML -t /dev/shm/grml
64     $PN -c GRML,GRML_X -t /grml/chroot/grml_uncompressed
65     $PN -c GRML
66
67 More details: man grml-live
68               /usr/share/doc/grml-live/grml-live.html
69
70 Please send your bug reports, feedback,.. to the grml-team.
71 http://grml.org/bugs/
72 "
73 }
74 # }}}
75
76 # command line parsing {{{
77
78 while getopts ?c:f:t:Fhv: opt; do
79   case "$opt" in
80     c) CLASSES="$OPTARG" ;;
81     F) FORCE=1 ;;
82     h) usage ; bailout 0 ;;
83     t) CHROOT_TARGET="$OPTARG" ;;
84     v) VERBOSE="-v" ;;
85     ?) echo "invalid option -$OPTARG" >&2; bailout 1 ;;
86   esac
87 done
88 shift $(($OPTIND - 1))  # set ARGV to the first not parsed commandline parameter
89 FAI_ARGS="$*"
90
91 # }}}
92
93 # some misc checks before executing FAI {{{
94 [ -n "$CLASSES" ] || bailout 1 "Error: \$CLASSES unset, please set it in /etc/grml/grml-live.conf or
95 specify it on the command line using the -c|--classes option."
96 [ -n "$CHROOT_TARGET" ] || bailout 1 "Error: \$CHROOT_TARGET unset, please set it in /etc/grml/grml-live.conf or
97 specify it on the command line using the -t|--target option."
98
99 if [ "$EXECUTE" != '1' ] ; then
100    echo "Error: please set EXECUTE=1 in /etc/grml/grml-live.conf to really execute grml-live.">&2
101    echo
102    echo "See 'man grml-live' for more details or execute '$PN --help'">&2
103    echo
104    bailout 1
105 fi
106 # }}}
107
108 # ask user whether the setup is ok {{{
109 if [ -z "$FORCE" ] ; then
110    echo
111    echo "$PN - check your configuration (or invoke using -F to force execution without prompting)"
112    echo
113    echo "  FAI classes:                  $CLASSES"
114    echo "  target / output directory:    $CHROOT_TARGET"
115    [ -n "$FAI_ARGS" ] && echo "  additional arguments for FAI: $FAI_ARGS"
116    echo
117    echo -n "Is this ok for you? [y/N] "
118    read a
119    if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
120       bailout 1 "Exiting as requested."
121    fi
122    echo
123 fi
124 # }}}
125
126 if [ -n "$GRML_LIVE_SOURCES" ] ; then
127    echo "$GRML_LIVE_SOURCES" > /etc/grml/fai/apt/sources.list
128 fi
129
130 if [ -n "$FAI_DEBOOTSTRAP" ] ; then
131    sed -i "s#^FAI_DEBOOTSTRAP#FAI_DEBOOTSTRAP=$FAI_DEBOOTSTRAP#" /etc/grml/fai/make-fai-nfsroot.conf
132 fi
133
134 # execute FAI {{{
135 if [ -d "$CHROOT_TARGET" ] ; then
136    echo "$CHROOT_TARGET assumes already, skipping the 'fai dirnstall' stage therefore."
137 else
138    mkdir "$CHROOT_TARGET" || bailout 5 "Problem with creating $CHROOT_TARGET for FAI"
139    fai $VERBOSE -C "$GRML_FAI_CONFIG" -c"$CLASSES" dirinstall "$CHROOT_TARGET" $FAI_ARGS
140 fi
141 # }}}
142
143 if [ -d "$BUILD_TARGET" ] ; then
144    echo "$BUILD_TARGET assumes already, skipping the 'squashfs' stage therefore."
145 else
146    mkdir -p "$BUILD_TARGET" || bailout 6 "Problem with creating $BUILD_TARGET for squashfs"
147
148    if [ "$ARCH" = x86 ] ; then
149       mkdir -p "$BUILD_TARGET"/boot/isolinux
150       mkdir "$BUILD_TARGET"/GRML
151       mkdir "$BUILD_TARGET"/live
152       cp /boot/memtest86+.bin                                       "$BUILD_TARGET"/boot/isolinux/memtest
153       cp "$CHROOT_TARGET"/boot/initrd*                              "$BUILD_TARGET"/boot/isolinux/initrd.gz
154       cp "$CHROOT_TARGET"/boot/vmlinuz                              "$BUILD_TARGET"/boot/isolinux/linux26
155       cp /usr/lib/syslinux/chain.c32                                "$BUILD_TARGET"/boot/isolinux/
156       cp /usr/lib/syslinux/isolinux.bin                             "$BUILD_TARGET"/boot/isolinux/
157       cp /usr/lib/syslinux/memdisk                                  "$BUILD_TARGET"/boot/isolinux/
158       cp /usr/lib/syslinux/menu.c32                                 "$BUILD_TARGET"/boot/isolinux/
159       cp /usr/share/grml-live/x86_files/boot/isolinux/allinone.img  "$BUILD_TARGET"/boot/isolinux/
160       cp /usr/share/grml-live/x86_files/boot/isolinux/balder10.imz  "$BUILD_TARGET"/boot/isolinux/
161       cp /usr/share/grml-live/x86_files/boot/isolinux/boot-beep.msg "$BUILD_TARGET"/boot/isolinux/
162       cp /usr/share/grml-live/x86_files/boot/isolinux/boot.msg      "$BUILD_TARGET"/boot/isolinux/
163       cp /usr/share/grml-live/x86_files/boot/isolinux/f*            "$BUILD_TARGET"/boot/isolinux/
164       cp /usr/share/grml-live/x86_files/boot/isolinux/isolinux.cfg  "$BUILD_TARGET"/boot/isolinux/
165       cp /usr/share/grml-live/x86_files/boot/isolinux/logo.16       "$BUILD_TARGET"/boot/isolinux/
166       cp /usr/share/grml-live/x86_files/boot/isolinux/syslinux.cfg  "$BUILD_TARGET"/boot/isolinux/
167       # minirt26.gz
168       # boot.cat
169       if [ -n "$WINDOWS_BINARIES" ] ; then
170          mkdir "$BUILD_TARGET"/windows
171          ( cd "$BUILD_TARGET"/windows
172          for file in pageant plink pscp psftp putty puttygen ; do
173              wget $WINDOWS_BINARIES/$file
174          done )
175       fi
176    elif [ "$ARCH" = amd64 ] ; then
177        echo 'Warning: gebi, it is your turn. :)'>2
178    elif [ "$ARCH" = ppc ] ; then
179        echo 'Warning: formorer, it is your turn. :)'>2
180    else
181       echo 'Warning: Unsupported ARCH, sorry. Want to support it? Contribute!'>&2
182    fi
183 fi
184
185 if [ -d "$ISO_TARGET" ] ; then
186    echo "$ISO_TARGET assumes already, skipping the 'iso build' stage therefore."
187 else
188    mkdir -p "$ISO_TARGET" || bailout 6 "Problem with creating $ISO_TARGET for squashfs"
189 fi
190
191 bailout 0
192
193 ## END OF FILE #################################################################
194 # vim:foldmethod=marker ts=2 ft=sh ai expandtab tw=80 sw=2