Branch 4.2 for module BootCD created from tag BootCD-3.4-5
[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=$1 ; shift
33
34 # Packages to install, junk and precious : see build/<pldistro>/bootcd.pkgs
35
36 # Do not tolerate errors
37 set -e
38
39 # Root of the initramfs reference image
40 bootcd=$PWD/build/bootcd
41 install -d -m 755 $bootcd
42
43 # Write version number
44 rpmquery --specfile bootcd.spec --queryformat '%{VERSION}\n' | head -1 >build/version.txt
45
46 # Install base system
47 pl_root_makedevs $bootcd
48 pkgsfile=$(pl_locateDistroFile ../build/ $pldistro bootcd.pkgs) 
49 pl_root_mkfedora $bootcd $pldistro $pkgsfile
50 pl_root_tune_image $bootcd
51
52 # Install ipnmac (for SuperMicro machines with IPMI)
53 echo "* Installing IPMI utilities"
54 install -D -m 755 ipnmac/ipnmac.x86 $bootcd/usr/sbin/ipnmac
55
56 # Install configuration files
57 echo "* Installing configuration files"
58 for file in fstab mtab modprobe.conf inittab hosts sysctl.conf ; do
59     install -D -m 644 conf_files/$file $bootcd/etc/$file
60 done
61
62 # Install initscripts
63 echo "* Installing initscripts"
64 for file in pl_sysinit pl_hwinit pl_netinit pl_validateconf pl_boot ; do
65     install -D -m 755 conf_files/$file $bootcd/etc/init.d/$file
66 done
67
68 # Install fallback node configuration file
69 echo "* Installing fallback node configuration file"
70 install -D -m 644 conf_files/default-net.cnf $bootcd/usr/boot/default-net.cnf
71
72 # Copy /etc/passwd out
73 install -D -m 644 $bootcd/etc/passwd build/passwd
74
75 # Root of the isofs
76 isofs=$PWD/build/isofs
77 install -d -m 755 $isofs
78
79 # Copy the kernel out
80 for kernel in $bootcd/boot/vmlinuz-* ; do
81     if [ -f $kernel ] ; then
82         install -D -m 644 $kernel $isofs/kernel
83     fi
84 done
85
86 # Don't need /boot anymore
87 rm -rf $bootcd/boot
88
89 # initramfs requires that /init be present
90 ln -sf /sbin/init $bootcd/init
91
92 # Pack the rest into a compressed archive
93 echo "* Compressing reference image"
94 (cd $bootcd && find . | cpio --quiet -c -o) | gzip -9 >$isofs/bootcd.img
95
96 # Build syslinux
97 # echo "* Building syslinux"
98 # CFLAGS="-Werror -Wno-unused -finline-limit=2000" make -C syslinux
99
100 # Install isolinux
101 #echo "* Installing isolinux"
102 #install -D -m 644 syslinux/isolinux.bin $isofs/isolinux.bin
103
104 exit 0