syslinux has been removed
[bootcd.git] / prep.sh
1 #!/bin/bash
2 #
3 # Builds the BootCD reference image, the first of two
4 # initramfs cpio archives that are concatenated together by
5 # isolinux/syslinux to form a custom BootCD.
6 #
7 # Aaron Klingaman <alk@absarokasoft.com>
8 # Mark Huang <mlhuang@cs.princeton.edu>
9 # Copyright (C) 2004-2006 The Trustees of Princeton University
10 #
11 # $Id$
12 #
13
14 PATH=/sbin:/bin:/usr/sbin:/usr/bin
15
16 # In both a normal CVS environment and a PlanetLab RPM
17 # build environment, all of our dependencies are checked out into
18 # directories at the same level as us.
19 if [ -d ../build ] ; then
20     PATH=$PATH:../build
21     srcdir=..
22 else
23     echo "Error: Could not find sources in either . or .."
24     exit 1
25 fi
26
27 export PATH
28
29 . build.common
30
31 # pldistro expected as $1 - defaults to planetlab
32 pldistro=planetlab
33 [ -n "$@" ] && pldistro=$1
34
35 # Packages to install : see <pldistro>-bootcd.lst
36
37 # Unnecessary junk
38 junk=(
39 lib/obsolete
40 lib/tls
41 usr/share/cracklib
42 usr/share/emacs
43 usr/share/gnupg
44 usr/share/i18n
45 usr/share/locale
46 usr/share/terminfo
47 usr/share/zoneinfo
48 usr/sbin/build-locale-archive
49 usr/sbin/dbconverter-2
50 usr/sbin/sasl*
51 usr/sbin/tcpslice
52 usr/lib/perl*
53 usr/lib/locale
54 usr/lib/sasl*
55 usr/lib/gconv
56 usr/lib/tls
57 )
58
59 precious=(
60 usr/share/i18n/locales/en_US
61 usr/share/i18n/charmaps/UTF-8.gz
62 usr/share/locale/en
63 usr/share/terminfo/l/linux
64 usr/share/terminfo/v/vt100
65 usr/share/terminfo/x/xterm
66 usr/share/zoneinfo/UTC
67 usr/lib/locale/en_US.utf8
68 )
69
70 # Do not tolerate errors
71 set -e
72
73 # Root of the initramfs reference image
74 bootcd=$PWD/build/bootcd
75 install -d -m 755 $bootcd
76
77 # Write version number
78 rpmquery --specfile bootcd.spec --queryformat '%{VERSION}\n' | head -1 >build/version.txt
79
80 # Install base system
81 lst=${pldistro}-bootcd.lst
82 options=$(pl_getPackagesOptions2 ${pl_DISTRO_NAME} $lst)
83
84 pl_setup_chroot $bootcd $options -k
85
86 pushd $bootcd
87
88 echo "* Removing unnecessary junk"
89
90 # Save precious files
91 tar --ignore-failed-read -cpf precious.tar ${precious[*]}
92
93 # Remove unnecessary junk
94 rm -rf ${junk[*]}
95
96 # Restore precious files
97 tar -xpf precious.tar
98 rm -f precious.tar
99
100 popd
101
102 # Install ipnmac (for SuperMicro machines with IPMI)
103 echo "* Installing IPMI utilities"
104 install -D -m 755 ipnmac/ipnmac.x86 $bootcd/usr/sbin/ipnmac
105
106 # Install configuration files
107 echo "* Installing configuration files"
108 for file in fstab mtab modprobe.conf inittab hosts sysctl.conf ; do
109     install -D -m 644 conf_files/$file $bootcd/etc/$file
110 done
111
112 # Install initscripts
113 echo "* Installing initscripts"
114 for file in pl_sysinit pl_hwinit pl_netinit pl_validateconf pl_boot ; do
115     install -D -m 755 conf_files/$file $bootcd/etc/init.d/$file
116 done
117
118 # Install fallback node configuration file
119 echo "* Installing fallback node configuration file"
120 install -D -m 644 conf_files/default-net.cnf $bootcd/usr/boot/default-net.cnf
121
122 # Copy /etc/passwd out
123 install -D -m 644 $bootcd/etc/passwd build/passwd
124
125 # Root of the isofs
126 isofs=$PWD/build/isofs
127 install -d -m 755 $isofs
128
129 # Copy the kernel out
130 for kernel in $bootcd/boot/vmlinuz-* ; do
131     if [ -f $kernel ] ; then
132         install -D -m 644 $kernel $isofs/kernel
133     fi
134 done
135
136 # Don't need /boot anymore
137 rm -rf $bootcd/boot
138
139 # initramfs requires that /init be present
140 ln -sf /sbin/init $bootcd/init
141
142 # Pack the rest into a compressed archive
143 echo "* Compressing reference image"
144 (cd $bootcd && find . | cpio --quiet -c -o) | gzip -9 >$isofs/bootcd.img
145
146 # Build syslinux
147 # echo "* Building syslinux"
148 # CFLAGS="-Werror -Wno-unused -finline-limit=2000" make -C syslinux
149
150 # Install isolinux
151 #echo "* Installing isolinux"
152 #install -D -m 644 syslinux/isolinux.bin $isofs/isolinux.bin
153
154 exit 0