for f12
[bootcd.git] / build.sh
1 #!/bin/bash
2 #
3 # Builds custom BootCD ISO and USB images in the current
4 # directory. 
5 #
6 # Aaron Klingaman <alk@absarokasoft.com>
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2004-2007 The Trustees of Princeton University
9 #
10 # $Id$
11 #
12
13 COMMAND=$(basename $0)
14 DIRNAME=$(dirname $0)
15 PATH=/sbin:/bin:/usr/sbin:/usr/bin
16
17 # defaults
18 DEFAULT_TYPES="usb iso"
19 # Leave 4 MB of free space
20 GRAPHIC_CONSOLE="graphic"
21 SERIAL_CONSOLE="ttyS0:115200:n:8"
22 CONSOLE_INFO=$GRAPHIC_CONSOLE
23 MKISOFS_OPTS="-R -J -r -f -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
24 FREE_SPACE=4096
25
26 # command-line settable args
27 NODE_CONFIGURATION_FILE=
28 CUSTOM_DIR=
29 OUTPUT_BASE=
30 DRY_RUN=""
31 OUTPUT_NAME=""
32 TYPES=""
33 KARGS_STR=""
34
35 # various globals
36 BUILDTMP=""
37 FULL_VERSION_STRING=""
38 ISOREF=""
39 ISOFS=""
40 OVERLAY=""
41 IS_SERIAL=""
42 console_dev=""
43 console_baud=""
44 console_spec=""
45 console_serial_line=""
46 kernel_args=""
47
48
49 #################### compute all supported types
50 # removing support for serial in the type
51 # this is because kargs.txt goes in the overlay, that is computed only once
52 # so we cannot handle serial and graphic modes within the same invokation of this script
53
54 ALL_TYPES=""
55 for x in iso usb usb_partition; do for c in "" "_cramfs" ; do
56   t="${x}${c}"
57   case $t in
58       usb_partition_cramfs)
59           # unsupported
60           ;;
61       *)
62           ALL_TYPES="$ALL_TYPES $t" ;;
63   esac
64 done; done
65
66 #################### cleanup utilities
67 declare -a _CLEANUPS=()
68 function do_cleanup() {
69     cd / ; for i in "${_CLEANUPS[@]}"; do $i ; done
70 }
71 function push_cleanup() {
72     _CLEANUPS=( "${_CLEANUPS[@]}" "$*" )
73 }
74 function pop_cleanup() {
75     unset _CLEANUPS[$((${#_CLEANUPS[@]} - 1))]
76 }
77
78 #################### initialization
79 function init_and_check () {
80
81     # Change to our source directory
82     local srcdir=$(cd $DIRNAME && pwd -P)
83     pushd $srcdir
84
85     # Root of the isofs
86     ISOREF=$PWD/${VARIANT}
87
88     # The reference image is expected to have been built by prep.sh (see .spec)
89     # we disable the initial logic that called prep.sh if that was not the case
90     # this is because prep.sh needs to know pldistro 
91     if [ ! -f $ISOREF/isofs/bootcd.img -o ! -f $ISOREF/version.txt ] ; then
92         echo "Could not find isofs and version.txt in $ISOREF"
93         if [ "$VARIANT" == "build" ] ; then
94             echo "You have to run prep.sh prior to calling $COMMAND"
95         else
96             echo "You need to create your variant image, see kvariant.sh"
97         fi
98         echo "Exiting .."
99         exit 1
100     fi
101
102     # build/version.txt written by prep.sh
103     BOOTCD_VERSION=$(cat ${VARIANT}/version.txt)
104
105     if [ -f /etc/planetlab/plc_config ] ; then
106         # Source PLC configuration
107         . /etc/planetlab/plc_config
108     fi
109
110     # use /var/tmp that should be large enough on both chroot- or vserver-based myplc
111     BUILDTMP=/var/tmp
112
113     FULL_VERSION_STRING="${PLC_NAME} BootCD ${BOOTCD_VERSION}"
114
115 }
116
117 # NOTE
118 # the custom-dir feature is designed to let a myplc try/ship a patched bootcd
119 # without the need for a full devel environment
120 # for example, you would create /root/custom-bootcd/etc/rc.d/init.d/pl_hwinit
121 # and run this script with -C /root/custom-bootcd
122 # this creates a third .img image of the custom dir, that 'hides' the files from 
123 # bootcd.img in the resulting unionfs
124 # it seems that this feature has not been used nor tested in a long time, use with care
125
126 usage() {
127     echo "Usage: $COMMAND [OPTION]..."
128     echo "    -f plnode.txt    Node to customize CD for (default: none)"
129     echo "    -t 'types'       Build the specified images (default: $DEFAULT_TYPES)"
130     echo "                     NOTE: mentioning 'serial' as part of the type is not supported anymore"
131     echo "    -a               Build all known types as listed below"
132     echo "    -s console-info  Enable a serial line as console and also bring up getty on that line"
133     echo "                     console-info: tty:baud-rate:parity:bits"
134     echo "                     or 'default' shortcut for $SERIAL_CONSOLE"
135     echo "    -S               equivalent to -s default"
136     echo "    -O output-base   The prefix of the generated files (default: PLC_NAME-BootCD-VERSION)"
137     echo "                     useful when multiple types are provided"
138     echo "                     can be a full path"
139     echo "    -o output-name   The full name of the generated file"
140     echo "    -C custom-dir    Custom directory"
141     echo "    -V variant       Use a variant - see kvariant.sh"
142     echo "    -n               Dry run - mostly for debug/test purposes"
143     echo "    -k               Add additional parameters to the kargs.txt file"
144     echo "    -h               This message"
145     echo "All known types: $ALL_TYPES"
146     exit 1
147 }
148
149 #################### 
150 function parse_command_line () {
151
152     # init
153     TYPES=""
154     # Get options
155     while getopts "f:t:as:SO:o:C:V:k:nh" opt ; do
156         case $opt in
157             f) NODE_CONFIGURATION_FILE=$OPTARG ;;
158             t) TYPES="$TYPES $OPTARG" ;;
159             a) TYPES="$ALL_TYPES" ;;
160             s) CONSOLE_INFO="$OPTARG" ;;
161             S) CONSOLE_INFO=$SERIAL_CONSOLE ;;
162             O) OUTPUT_BASE="$OPTARG" ;;
163             o) OUTPUT_NAME="$OPTARG" ;;
164             C) CUSTOM_DIR="$OPTARG" ;;
165             V) VARIANT="$OPTARG" ;;
166             k) KARGS_STR="$KARGS_STR $OPTARG" ;;
167             n) DRY_RUN=true ;;
168             h|*) usage ;;
169         esac
170     done
171
172     # use defaults if not set
173     [ -z "$TYPES" ] && TYPES="$DEFAULT_TYPES"
174     [ -z "$VARIANT" ] && VARIANT="build"
175     [ "$CONSOLE_INFO" == "default" ] && CONSOLE_INFO=$SERIAL_CONSOLE
176
177     if [ -n "$NODE_CONFIGURATION_FILE" ] ; then
178     # check existence of NODE_CONFIGURATION_FILE and normalize as we will change directory
179         if [ ! -f "$NODE_CONFIGURATION_FILE" ] ; then
180             echo "Node configuration file $NODE_CONFIGURATION_FILE not found - exiting"
181             exit 1
182         fi
183         cf_dir="$(dirname $NODE_CONFIGURATION_FILE)"
184         cf_dir="$(cd $cf_dir; pwd -P)"
185         cf_file="$(basename $NODE_CONFIGURATION_FILE)"
186         NODE_CONFIGURATION_FILE="$cf_dir"/"$cf_file"
187     fi
188
189     # check TYPES 
190     local matcher="XXX$(echo $ALL_TYPES | sed -e 's,\W,XXX,g')XXX"
191     for t in $TYPES; do
192         echo Checking type $t
193         echo $matcher | grep XXX${t}XXX &> /dev/null
194         if [ "$?" != 0 ] ; then
195             echo Unknown type $t
196             usage
197         fi
198     done
199
200 }
201
202 ####################
203 function init_serial () {
204     local console=$1; shift
205     if [ "$console" == "$GRAPHIC_CONSOLE" ] ; then
206         IS_SERIAL=
207         console_spec=""
208         echo "Standard, graphic, non-serial mode"
209     else
210         IS_SERIAL=true
211         console_dev=$(echo "$console" | awk -F: ' {print $1}')
212         console_baud=$(echo "$console" | awk -F: ' {print $2}')
213         [ -z "$console_baud" ] && console_baud="115200"
214         local console_parity=$(echo "$console" | awk -F: ' {print $3}')
215         [ -z "$console_parity" ] && console_parity="n"
216         local console_bits=$(echo "$console" | awk -F: ' {print $4}')
217         [ -z "$console_bits" ] && console_bits="8"
218         console_spec="console=${console_dev},${console_baud}${console_parity}${console_bits}"
219         local tty_nb=$(echo $console_dev | sed -e 's,[a-zA-Z],,g')
220         console_serial_line="SERIAL ${tty_nb} ${console_baud}"
221         echo "Serial mode"
222         echo "console_serial_line=${console_serial_line}"
223         echo "console_spec=${console_spec}"
224     fi
225 }
226
227 #################### run once : build the overlay image
228 function build_overlay () {
229
230     BUILDTMP=$(mktemp -d ${BUILDTMP}/bootcd.XXXXXX)
231     push_cleanup rm -fr "${BUILDTMP}"
232     mkdir "${BUILDTMP}/isofs"
233     for i in "$ISOREF"/isofs/{bootcd.img,kernel}; do
234         ln -s "$i" "${BUILDTMP}/isofs"
235     done
236     # the syslinux that comes with f12 has this file in a new location
237     cp "/usr/lib/syslinux/isolinux.bin" "${BUILDTMP}/isofs" \
238         || cp "/usr/share/syslinux/isolinux.bin" "${BUILDTMP}/isofs" 
239     ISOFS="${BUILDTMP}/isofs"
240
241     # Root of the ISO and USB images
242     echo "* Populating root filesystem..."
243     OVERLAY="${BUILDTMP}/overlay"
244     install -d -m 755 $OVERLAY
245     push_cleanup rm -fr $OVERLAY
246
247     # Create version files
248     echo "* Creating version files"
249
250     # Boot Manager compares pl_version in both places to make sure that
251     # the right CD is mounted. We used to boot from an initrd and mount
252     # the CD on /usr. Now we just run everything out of the initrd.
253     for file in $OVERLAY/pl_version $OVERLAY/usr/isolinux/pl_version ; do
254         mkdir -p $(dirname $file)
255         echo "$FULL_VERSION_STRING" >$file
256     done
257
258     # Install boot server configuration files
259     echo "* Installing boot server configuration files"
260
261     # We always intended to bring up and support backup boot servers,
262     # but never got around to it. Just install the same parameters for
263     # both for now.
264     for dir in $OVERLAY/usr/boot $OVERLAY/usr/boot/backup ; do
265         install -D -m 644 $PLC_BOOT_CA_SSL_CRT $dir/cacert.pem
266         install -D -m 644 $PLC_ROOT_GPG_KEY_PUB $dir/pubring.gpg
267         echo "$PLC_BOOT_HOST" >$dir/boot_server
268         echo "$PLC_BOOT_SSL_PORT" >$dir/boot_server_port
269         echo "/boot/" >$dir/boot_server_path
270     done
271
272     # Install old-style boot server configuration files
273     # as opposed to what a former comment suggested, 
274     # this is still required, somewhere in the bootmanager apparently
275     install -D -m 644 $PLC_BOOT_CA_SSL_CRT $OVERLAY/usr/bootme/cacert/$PLC_BOOT_HOST/cacert.pem
276     echo "$FULL_VERSION_STRING" >$OVERLAY/usr/bootme/ID
277     echo "$PLC_BOOT_HOST" >$OVERLAY/usr/bootme/BOOTSERVER
278     echo "$PLC_BOOT_HOST" >$OVERLAY/usr/bootme/BOOTSERVER_IP
279     echo "$PLC_BOOT_SSL_PORT" >$OVERLAY/usr/bootme/BOOTPORT
280
281     # Generate /etc/issue
282     echo "* Generating /etc/issue"
283
284     if [ "$PLC_WWW_PORT" = "443" ] ; then
285         PLC_WWW_URL="https://$PLC_WWW_HOST/"
286     elif [ "$PLC_WWW_PORT" != "80" ] ; then
287         PLC_WWW_URL="http://$PLC_WWW_HOST:$PLC_WWW_PORT/"
288     else
289         PLC_WWW_URL="http://$PLC_WWW_HOST/"
290     fi
291
292     mkdir -p $OVERLAY/etc
293     cat >$OVERLAY/etc/issue <<EOF
294 $FULL_VERSION_STRING
295 $PLC_NAME Node: \n
296 Kernel \r on an \m
297 $PLC_WWW_URL
298
299 This machine is a node in the $PLC_NAME distributed network.  It has
300 not fully booted yet. If you have cancelled the boot process at the
301 request of $PLC_NAME Support, please follow the instructions provided
302 to you. Otherwise, please contact $PLC_MAIL_SUPPORT_ADDRESS.
303
304 Console login at this point is restricted to root. Provide the root
305 password of the default $PLC_NAME Central administrator account at the
306 time that this CD was created.
307
308 EOF
309     
310     # Set root password
311     echo "* Setting root password"
312
313     if [ -z "$ROOT_PASSWORD" ] ; then
314         # Generate an encrypted password with crypt() if not defined
315         # in a static configuration.
316         ROOT_PASSWORD=$(python <<EOF
317 import crypt, random, string
318 salt = [random.choice(string.letters + string.digits + "./") for i in range(0,8)]
319 print crypt.crypt('$PLC_ROOT_PASSWORD', '\$1\$' + "".join(salt) + '\$')
320 EOF
321 )
322     fi
323
324     # build/passwd copied out by prep.sh
325     sed -e "s@^root:[^:]*:\(.*\)@root:$ROOT_PASSWORD:\1@" ${VARIANT}/passwd >$OVERLAY/etc/passwd
326
327     # Install node configuration file (e.g., if node has no floppy disk or USB slot)
328     if [ -f "$NODE_CONFIGURATION_FILE" ] ; then
329         echo "* Installing node configuration file $NODE_CONFIGURATION_FILE -> /usr/boot/plnode.txt of the bootcd image"
330         install -D -m 644 $NODE_CONFIGURATION_FILE $OVERLAY/usr/boot/plnode.txt
331         NODE_ID=$(source $NODE_CONFIGURATION_FILE; echo $NODE_ID)
332         echo "* Building network configuration for $NODE_ID"
333         plnet -- --root $OVERLAY --files-only --program BootCD $NODE_ID
334     fi
335
336     if [ -n "$IS_SERIAL" ] ; then
337         KARGS_STR="$KARGS_STR ${console_spec}"
338     fi
339
340     if [ -n "$KARGS_STR" ] ; then
341         echo "$KARGS_STR" > $OVERLAY/kargs.txt
342         kernel_args=$KARGS_STR
343     fi
344
345     # Pack overlay files into a compressed archive
346     echo "* Compressing overlay image"
347     (cd $OVERLAY && find . | cpio --quiet -c -o) | gzip -9 >$ISOFS/overlay.img
348
349     rm -rf $OVERLAY
350     pop_cleanup
351
352     if [ -n "$CUSTOM_DIR" ]; then
353         echo "* Compressing custom image"
354         (cd "$CUSTOM_DIR" && find . | cpio --quiet -c -o) | gzip -9 >$ISOFS/custom.img
355     fi
356
357     # Calculate ramdisk size (total uncompressed size of both archives)
358     ramdisk_size=$(gzip -l $ISOFS/bootcd.img $ISOFS/overlay.img ${CUSTOM_DIR:+$ISOFS/custom.img} | tail -1 | awk '{ print $2; }') # bytes
359     ramdisk_size=$((($ramdisk_size + 1023) / 1024)) # kilobytes
360
361     echo "$FULL_VERSION_STRING" >$ISOFS/pl_version
362
363     popd
364 }
365
366 #################### plain ISO
367 function build_iso() {
368     local iso="$1" ; shift
369     local custom="$1"
370
371     # Write isolinux configuration
372     cat >$ISOFS/isolinux.cfg <<EOF
373 ${console_serial_line}
374 DEFAULT kernel
375 APPEND ramdisk_size=$ramdisk_size initrd=bootcd.img,overlay.img${custom:+,custom.img} root=/dev/ram0 rw ${kernel_args}
376 DISPLAY pl_version
377 PROMPT 0
378 TIMEOUT 40
379 EOF
380
381     # Create ISO image
382     echo "* Creating ISO image"
383     mkisofs -o "$iso" $MKISOFS_OPTS $ISOFS
384 }
385
386 #################### USB with partitions
387 function build_usb_partition() {
388     echo -n "* Creating USB image with partitions..."
389     local usb="$1" ; shift
390     local custom="$1"
391
392     local size=$(($(du -Lsk $ISOFS | awk '{ print $1; }') + $FREE_SPACE))
393     size=$(( $size / 1024 ))
394
395     local heads=64
396     local sectors=32
397     local cylinders=$(( ($size*1024*2)/($heads*$sectors) ))
398     local offset=$(( $sectors*512 ))
399
400     /usr/lib/syslinux/mkdiskimage -M -4 "$usb" $size $heads $sectors
401     
402     cat >${BUILDTMP}/mtools.conf<<EOF
403 drive z:
404 file="${usb}"
405 cylinders=$cylinders
406 heads=$heads
407 sectors=$sectors
408 offset=$offset
409 mformat_only
410 mtools_skip_check=1
411 EOF
412     # environment variable for mtools
413     export MTOOLSRC="${BUILDTMP}/mtools.conf"
414
415     ### COPIED FROM build_usb() below!!!!
416     echo -n " populating USB image... "
417     mcopy -bsQ -i "$usb" "$ISOFS"/* z:/
418         
419     # Use syslinux instead of isolinux to make the image bootable
420     tmp="${BUILDTMP}/syslinux.cfg"
421     cat >$tmp <<EOF
422 ${console_serial_line}
423 DEFAULT kernel
424 APPEND ramdisk_size=$ramdisk_size initrd=bootcd.img,overlay.img${custom:+,custom.img} root=/dev/ram0 rw ${kernel_args}
425 DISPLAY pl_version
426 PROMPT 0
427 TIMEOUT 40
428 EOF
429     mdel -i "$usb" z:/isolinux.cfg 2>/dev/null || :
430     mcopy -i "$usb" "$tmp" z:/syslinux.cfg
431     rm -f "$tmp"
432     rm -f "${MTOOLSRC}"
433     unset MTOOLSRC
434
435     echo "making USB image bootable."
436     syslinux -o $offset "$usb"
437
438 }
439
440 #################### plain USB
441 function build_usb() {
442     echo -n "* Creating USB image... "
443     local usb="$1" ; shift
444     local custom="$1"
445
446     rm -f "$usb"
447     mkfs.vfat -C "$usb" $(($(du -Lsk $ISOFS | awk '{ print $1; }') + $FREE_SPACE))
448
449     cat >${BUILDTMP}/mtools.conf<<EOF
450 mtools_skip_check=1
451 EOF
452     # environment variable for mtools
453     export MTOOLSRC="${BUILDTMP}/mtools.conf"
454
455     # Populate it
456     echo -n " populating USB image... "
457     mcopy -bsQ -i "$usb" "$ISOFS"/* ::/
458
459     # Use syslinux instead of isolinux to make the image bootable
460     tmp="${BUILDTMP}/syslinux.cfg"
461     cat >$tmp <<EOF
462 ${console_serial_line}
463 DEFAULT kernel
464 APPEND ramdisk_size=$ramdisk_size initrd=bootcd.img,overlay.img${custom:+,custom.img} root=/dev/ram0 rw ${kernel_args}
465 DISPLAY pl_version
466 PROMPT 0
467 TIMEOUT 40
468 EOF
469     mdel -i "$usb" ::/isolinux.cfg 2>/dev/null || :
470     mcopy -i "$usb" "$tmp" ::/syslinux.cfg
471     rm -f "$tmp"
472     rm -f "${MTOOLSRC}"
473     unset MTOOLSRC
474
475     echo "making USB image bootable."
476     syslinux "$usb"
477 }
478
479 #################### utility to setup CRAMFS related support
480 function prepare_cramfs() {
481     [ -n "$CRAMFS_PREPARED" ] && return 0
482     local custom=$1; 
483
484     echo "* Setting up CRAMFS-based images"
485     local tmp="${BUILDTMP}/cramfs-tree"
486     mkdir -p "$tmp"
487     push_cleanup rm -rf $tmp
488     pushd $tmp
489     gzip -d -c $ISOFS/bootcd.img     | cpio -diu
490     gzip -d -c $ISOFS/overlay.img    | cpio -diu
491     [ -n "$custom" ] && \
492         gzip -d -c $ISOFS/custom.img | cpio -diu
493
494     # clean out unnecessary rpm lib
495     echo "* clearing var/lib/rpm/*"
496     rm -f var/lib/rpm/*
497
498     # bootcd requires this directory
499     mkdir -p mnt/confdevice
500
501     # relocate various directory to /tmp
502     rm -rf root
503     ln -fs /tmp/root root
504     ln -fs /sbin/init linuxrc 
505     ln -fs /tmp/resolv.conf etc/resolv.conf
506     ln -fs /tmp/etc/mtab etc/mtab
507
508     # have pl_rsysinit copy over appropriate etc & var directories into /tmp/etc/
509     # make /tmp/etc
510     echo "* renaming dirs in ./etc"
511     pushd etc
512     for dir in `find * -type d -prune | grep -v rc.d`; do
513         mv ${dir} ${dir}_o
514         ln -fs /tmp/etc/${dir} ${dir}
515     done
516     popd
517
518     echo "* renaming dirs in ./var"
519     # rename all top-level directories and put in a symlink to /tmp/var
520     pushd var
521     for dir in `find * -type d -prune`; do
522         mv ${dir} ${dir}_o
523         ln -fs /tmp/var/${dir} ${dir}
524     done
525     popd
526
527     # overwrite fstab to mount / as cramfs and /tmp as tmpfs
528     echo "* Overwriting etc/fstab to use cramfs and tmpfs"
529     rm -f ./etc/fstab
530     cat >./etc/fstab <<EOF
531 /dev/ram0     /              cramfs     ro              0 0
532 none          /dev/pts       devpts     gid=5,mode=620  0 0
533 none          /proc          proc       defaults        0 0
534 none          /sys           sysfs      defaults        0 0
535 EOF
536
537     pushd dev
538     rm -f console
539     mknod console c 5 1
540     #for i in 0 1 2 3 4 5 6 7 8; do rm -f ram${i} ; done
541     #for i in 0 1 2 3 4 5 6 7 8; do mknod ram${i} b 1 ${i} ; done
542     #ln -fs ram1 ram
543     #ln -fs ram0 ramdisk
544     popd
545
546     # update etc/inittab to start with pl_rsysinit
547     sed -i 's,pl_sysinit,pl_rsysinit,' etc/inittab
548
549     # modify inittab to have a serial console
550     if [ -n "$serial" ] ; then
551         echo "T0:23:respawn:/sbin/agetty -L $console_dev $console_baud vt100" >> etc/inittab
552         # and let root log in
553         echo "$console_dev" >> etc/securetty
554     fi
555
556     # calculate the size of /tmp based on the size of /etc & /var + 8MB slack
557     etcsize=$(du -s ./etc | awk '{ print $1 }')
558     varsize=$(du -s ./var | awk '{ print $1 }')
559     let msize=($varsize+$etcsize+8192)/1024
560
561     # make dhclient happy
562     for i in $(seq 0 9); do ln -fs /tmp/etc/dhclient-eth${i}.conf etc/dhclient-eth${i}.conf ; done
563     ln -fs /tmp/etc/resolv.conf etc/resolv.conf
564     ln -fs /tmp/etc/resolv.conf.predhclient etc/resolv.conf.predhclient
565
566     # generate pl_rsysinit
567     cat > etc/rc.d/init.d/pl_rsysinit <<EOF
568 #!/bin/sh
569 # generated by $COMMAND
570 echo -n "pl_rsysinit: preparing /etc and /var for pl_sysinit..."
571 mount -t tmpfs -orw,size=${msize}M,mode=1777 tmpfs /tmp
572 mkdir -p /tmp/root
573 mkdir -p /tmp/etc
574 touch /tmp/etc/resolv.conf
575 touch /tmp/etc/mtab
576 mkdir -p /tmp/var
577
578 # make mtab happy
579 echo "tmpfs /tmp tmpfs rw,size=${msize}M,mode=1777 1 1" > /tmp/etc/mtab
580
581 # copy over directory contents of all _o directories from /etc and /var
582 # /tmp/etc and /tmp/var
583 pushd /etc
584 for odir in \$(cd /etc && ls -d *_o); do dir=\$(echo \$odir | sed 's,\_o$,,'); (mkdir -p /tmp/etc/\$dir && cd \$odir && find . | cpio -p -d -u /tmp/etc/\$dir); done
585 popd
586 pushd /var
587 for odir in \$(cd /var && ls -d *_o); do dir=\$(echo \$odir | sed 's,\_o$,,'); (mkdir -p /tmp/var/\$dir && cd \$odir && find . | cpio -p -d -u /tmp/var/\$dir); done
588 popd
589
590 echo "done"
591
592 # hand over to pl_sysinit
593 echo "pl_rsysinit: handing over to pl_sysinit"
594 /etc/init.d/pl_sysinit
595 EOF
596     chmod +x etc/rc.d/init.d/pl_rsysinit
597
598     popd
599
600     # create the cramfs image
601     echo "* Creating cramfs image"
602     mkfs.cramfs $tmp/ ${BUILDTMP}/cramfs.img
603     cramfs_size=$(($(du -sk ${BUILDTMP}/cramfs.img | awk '{ print $1; }') + 1))
604     rm -rf $tmp
605     pop_cleanup
606 }
607
608 #################### Create ISO CRAMFS image
609 function build_iso_cramfs() {
610     local iso="$1" ; shift
611     local custom="$1"
612
613     prepare_cramfs "$custom"
614     echo "* Creating ISO CRAMFS-based image"
615
616     local tmp="${BUILDTMP}/cramfs-iso"
617     mkdir -p "$tmp"
618     push_cleanup rm -rf $tmp
619     (cd $ISOFS && find . | grep -v "\.img$" | cpio -p -d -u $tmp/)
620     cat >$tmp/isolinux.cfg <<EOF
621 ${console_serial_line}
622 DEFAULT kernel
623 APPEND ramdisk_size=$cramfs_size initrd=cramfs.img root=/dev/ram0 ro ${kernel_args}
624 DISPLAY pl_version
625 PROMPT 0
626 TIMEOUT 40
627 EOF
628
629     cp ${BUILDTMP}/cramfs.img $tmp
630     mkisofs -o "$iso" \
631         $MKISOFS_OPTS \
632         $tmp
633
634     rm -fr "$tmp"
635     pop_cleanup
636 }
637
638 #################### Create USB CRAMFS based image
639 function build_usb_cramfs() {
640     local usb="$1" ; shift
641     local custom="$1"
642
643     prepare_cramfs "$custom"
644     echo "* Creating USB CRAMFS based image"
645
646     let vfat_size=${cramfs_size}+$FREE_SPACE
647
648     # Make VFAT filesystem for USB
649     mkfs.vfat -C "$usb" $vfat_size
650
651     # Populate it
652     echo "* Populating USB with overlay images and cramfs"
653     mcopy -bsQ -i "$usb" $ISOFS/kernel $ISOFS/pl_version ::/
654     mcopy -bsQ -i "$usb" ${BUILDTMP}/cramfs.img ::/
655
656     # Use syslinux instead of isolinux to make the image bootable
657     tmp="${BUILDTMP}/syslinux.cfg"
658     cat >$tmp <<EOF
659 ${console_serial_line}
660 DEFAULT kernel
661 APPEND ramdisk_size=$cramfs_size initrd=cramfs.img root=/dev/ram0 ro ${kernel_args}
662 DISPLAY pl_version
663 PROMPT 0
664 TIMEOUT 40
665 EOF
666
667     mcopy -bsQ -i "$usb" "$tmp" ::/syslinux.cfg
668     rm -f "$tmp"
669
670     echo "* Making USB CRAMFS based image bootable"
671     syslinux "$usb"
672 }
673
674 #################### map on all types provided on the command-line and invoke one of the above functions
675 function build_types () {
676
677     [ -z "$OUTPUT_BASE" ] && OUTPUT_BASE="$PLC_NAME-BootCD-$BOOTCD_VERSION"
678
679     # alter output filename to reflect serial settings
680     if [ -n "$IS_SERIAL" ] ; then
681         if [ "$CONSOLE_INFO" == "$SERIAL_CONSOLE" ] ; then
682             serial="-serial"
683         else
684             serial="-serial-$(echo $CONSOLE_INFO | sed -e 's,:,,g')"
685         fi
686     else
687         serial=""
688     fi
689     
690     function type_to_name() {
691         echo $1 | sed '
692         s/usb$/.usb/;
693         s/usb_partition$/-partition.usb/;
694         s/iso$/.iso/;
695         s/usb_cramfs$/-cramfs.usb/;
696         s/iso_cramfs$/-cramfs.iso/;
697         '
698     }
699
700     for t in $TYPES; do
701         arg=$t
702
703         tname=`type_to_name $t`
704         # if -o is specified (as it has no default)
705         if [ -n "$OUTPUT_NAME" ] ; then
706             output=$OUTPUT_NAME
707         else
708             output="${OUTPUT_BASE}${serial}${tname}"
709         fi
710
711         echo "*** Dealing with type=$arg"
712         echo '*' build_$t "$output" "$CUSTOM_DIR"
713         [ -n "$DRY_RUN" ] || build_$t "$output" "$CUSTOM_DIR" 
714     done
715 }
716
717 #################### 
718 function main () {
719
720     parse_command_line "$@"
721
722     init_and_check
723
724     echo "* Building images for $FULL_VERSION_STRING"
725     # Do not tolerate errors
726     set -e
727     trap "do_cleanup" ERR INT EXIT
728
729     init_serial $CONSOLE_INFO
730     build_overlay
731     build_types
732
733     exit 0
734 }
735
736 ####################
737 main "$@"