c480f03ca2b46a2703bfc22b31ad975dc505ed2b
[grml-live.git] / remaster / grml-live-remaster
1 #!/bin/sh
2 # Filename:      grml-live-remaster
3 # Purpose:       remaster a grml from the live cd
4 # Authors:       grml-team (grml.org),
5 #                (c) Michael Schierl <schierlm@gmx.de>,
6 #                (c) Michael Prokop <mika@grml.org>,
7 #                (c) Thorsten Glaser <tg@mirbsd.org>
8 # Bug-Reports:   see http://grml.org/bugs/
9 # License:       This file is licensed under the GPL v2 or any later version.
10 ################################################################################
11 # DISCLAIMER:
12 # this script currently lacks LOTS of error checking code... any help welcome...
13 ################################################################################
14
15 # define function getfilesize before "set -e"
16 if stat --help >/dev/null 2>&1; then
17   getfilesize='stat -c %s'      # GNU stat
18 else
19   getfilesize='stat -f %z'      # BSD stat
20 fi
21
22 set -e # exit on any error
23
24 VERSION='0.0.3'
25 GRML_LIVE_EDITOR=${VISUAL:-${EDITOR:-vi}}
26
27 # source core functions {{{
28 if ! [ -r /etc/grml/lsb-functions ] || ! [ -r /etc/grml/script-functions ] ; then
29   echo "Error: could not read /etc/grml/lsb-functions and/or /etc/grml/script-functions." >&2
30   echo "Error: $0 can run only in Grml live session. Exiting." >&2
31   exit 1
32 fi
33
34 . /etc/grml/lsb-functions
35 . /etc/grml/script-functions
36 # }}}
37
38 if ! isgrmlcd ; then
39   echo "Error: $0 can run only in Grml live session. Exiting." >&2
40   exit 1
41 fi
42
43 # make sure we have what we need {{{
44 if check4progs mkisofs >/dev/null 2>&1 ; then
45   MKISO=mkisofs
46 fi
47
48 if check4progs genisoimage >/dev/null 2>&1 ; then
49   MKISO=genisoimage
50 fi
51
52 if [ -z "$MKISO" ] ; then
53   echo "Error: neither mkisofs nor genisoimage available. Exiting." >&2
54   exit 1
55 fi
56
57 check4progs stat || exit 1
58
59 # allow overriding via environment:
60 if [ -z "$MKSQUASHFS" ] ; then
61   if which mksquashfs >/dev/null 2>&1 ; then
62     MKSQUASHFS=mksquashfs
63   else
64     echo "Error: mksquashfs is not available. Exiting." >&2
65     exit 1
66   fi
67 fi
68 check4root || exit 1
69 # }}}
70
71 if [ -z "$1" ]; then
72    echo "$0 - version $VERSION
73
74 Usage: $0 destination.iso
75   destination.iso should point to a path that is on a hard disk,
76   you might want to mount some swap partitions or swap files
77   first, because grml-live-remaster will need a lot ot RAM.
78
79 Please report bugs and feature requests: http://grml.org/bugs/" >&2
80    exit 1
81 fi
82
83 if [ ! -d /remaster ]; then
84    mkdir -p /remaster/chroot /remaster/tmp /remaster/cdrom
85    mount -t tmpfs tmpfs /remaster/tmp
86    echo "#:# edit the following two lines to change the boot message" \
87            >/remaster/msg
88    echo "#:#" >>/remaster/msg
89    if [ -r /live/image/boot/isolinux/boot.msg ] ; then
90       sed 1,2d /live/image/boot/isolinux/boot.msg >>/remaster/msg
91    else
92       sed 1,2d /live/image/boot.msg >>/remaster/msg
93    fi
94 fi
95
96 SQUASHFS_FILE="$(find /live/image/live -name \*.squashfs | head -1)"
97 if ! grep -q "/remaster/cdrom squashfs" /proc/mounts ;  then
98    mount -t squashfs "$SQUASHFS_FILE" /remaster/cdrom -o ro,loop
99 fi
100
101 if ! grep -q "aufs /remaster/chroot" /proc/mounts ; then
102    mount -t aufs aufs /remaster/chroot -o br:/remaster/tmp=rw:/remaster/cdrom=rr
103 fi
104
105 for i in dev proc root sys tmp; do
106     mount --bind /$i /remaster/chroot/$i
107 done
108
109 echo "Now edit the contents of the live CD in this chrooted shell:"
110 chroot /remaster/chroot
111
112 for i in dev proc root sys tmp; do
113         umount /remaster/chroot/$i
114 done
115
116 ${GRML_LIVE_EDITOR} /remaster/msg
117
118 [ -d /remaster/iso ] || mkdir /remaster/iso
119
120 for i in /live/image/*; do
121     if [ ! $i == /live/image/live ]; then
122        cp -R $i /remaster/iso
123     fi
124 done
125
126 if [ -r /remaster/iso/boot/isolinux/boot.msg ] ; then
127    rm /remaster/iso/boot/isolinux/boot.msg
128 fi
129
130 # make sure we support usb sticks as well:
131 if [ -d /live/image/boot/isolinux ] ; then
132    BOOTSTUFF=/live/image/boot/isolinux
133 else
134    BOOTSTUFF=/live/image
135 fi
136
137 [ -d /remaster/iso/boot/isolinux ] || mkdir -p /remaster/iso/boot/isolinux
138
139 sed 3,4d "${BOOTSTUFF}"/boot.msg \
140         >/remaster/iso/boot/isolinux/boot.msg
141 sed 1,2d /remaster/msg >>/remaster/iso/boot/isolinux/boot.msg
142
143 mkdir /remaster/iso/live
144 $MKSQUASHFS /remaster/chroot /remaster/iso/live/"$(basename $SQUASHFS_FILE)"
145 umount /remaster/chroot /remaster/cdrom
146
147 if [ -f /remaster/iso/boot/isolinux/isolinux.bin ] ; then
148    ISOLINUX=boot/isolinux/isolinux.bin
149    ISOLINUX_BOOTCAT=boot/isolinux/boot.cat
150 else
151    ISOLINUX=isolinux.bin
152    ISOLINUX_BOOTCAT=boot.cat
153 fi
154
155 $MKISO -b $ISOLINUX -no-emul-boot -c $ISOLINUX_BOOTCAT \
156         -boot-info-table -boot-load-size 4 -no-pad \
157         -l -r -J -o "$1" /remaster/iso
158 # pad for partition table
159 siz=$($getfilesize "$1")
160 cyls=$((siz / 512 / 32 / 16 + 1))       # C=$cyls H=16 S=32 (= 256 KiB units)
161 siz=$((cyls * 16 * 32 * 512))           # size after padding
162 dd if=/dev/zero bs=1 count=1 seek=$((siz - 1)) of="$1" 2>/dev/null
163 rm -R /remaster/iso
164
165 # here is the place where we could apply bootgrub.mksh
166
167 echo ""
168 echo "ISO generation complete:"
169 ls --color -l "$1"
170 echo "If you want to customize your ISO, just call grml-live-remaster again."
171
172 ## END OF FILE #################################################################
173 # vim: ai filetype=sh expandtab