X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=prep.sh;h=68bebcfacdfa9843ff25786c2acf69a49f861e40;hb=b4fcec7b04d6f3f7b2d250db8d6906024066b2cc;hp=4ac5331a115b134c843302d5347b52d3de253b9f;hpb=0df56e7da30de78c303ac72563ba81e35cb9174c;p=bootcd.git diff --git a/prep.sh b/prep.sh index 4ac5331..68bebcf 100755 --- a/prep.sh +++ b/prep.sh @@ -8,7 +8,7 @@ # Mark Huang # Copyright (C) 2004-2006 The Trustees of Princeton University # -# $Id: prep.sh,v 1.13.6.1 2007/08/30 16:38:59 mef Exp $ +# $Id$ # PATH=/sbin:/bin:/usr/sbin:/usr/bin @@ -28,84 +28,10 @@ export PATH . build.common -# Packages to install -packagelist=( -udev -dhclient -bash -coreutils -iputils -kernel -bzip2 -diffutils -logrotate -passwd -rsh -rsync -sudo -tcpdump -telnet -traceroute -time -wget -yum -curl -gzip -python -tar -pciutils -kbd -authconfig -hdparm -lvm -lvm2 -kexec-tools -gnupg -nano -parted -pyparted -openssh-server -openssh-clients -ncftp -dosfstools -dos2unix -bind-utils -sharutils -vconfig -) - -# Unnecessary junk -junk=( -lib/obsolete -lib/tls -usr/share/cracklib -usr/share/emacs -usr/share/gnupg -usr/share/i18n -usr/share/locale -usr/share/terminfo -usr/share/zoneinfo -usr/sbin/build-locale-archive -usr/sbin/dbconverter-2 -usr/sbin/sasl* -usr/sbin/tcpslice -usr/lib/perl* -usr/lib/locale -usr/lib/sasl* -usr/lib/gconv -usr/lib/tls -) - -precious=( -usr/share/i18n/locales/en_US -usr/share/i18n/charmaps/UTF-8.gz -usr/share/locale/en -usr/share/terminfo/l/linux -usr/share/terminfo/v/vt100 -usr/share/terminfo/x/xterm -usr/share/zoneinfo/UTC -usr/lib/locale/en_US.utf8 -) +pldistro=$1 ; shift +nodefamily=$1; shift + +# Packages to install, junk and precious : see build//bootcd.pkgs # Do not tolerate errors set -e @@ -115,30 +41,14 @@ bootcd=$PWD/build/bootcd install -d -m 755 $bootcd # Write version number -rpmquery --specfile bootcd.spec --queryformat '%{VERSION}\n' | head -1 >build/version.txt +rpmquery --specfile bootcd.spec --queryformat '%{VERSION}\n' | head -1 > build/version.txt +echo $nodefamily > build/nodefamily # Install base system -for package in "${packagelist[@]}" ; do - packages="$packages -p $package" -done - -pl_setup_chroot $bootcd $packages - -pushd $bootcd - -echo "* Removing unnecessary junk" - -# Save precious files -tar --ignore-failed-read -cpf precious.tar ${precious[*]} - -# Remove unnecessary junk -rm -rf ${junk[*]} - -# Restore precious files -tar -xpf precious.tar -rm -f precious.tar - -popd +pl_root_makedevs $bootcd +pkgsfile=$(pl_locateDistroFile ../build/ $pldistro bootcd.pkgs) +pl_root_mkfedora $bootcd $pldistro $pkgsfile +pl_root_tune_image $bootcd # Install ipnmac (for SuperMicro machines with IPMI) echo "* Installing IPMI utilities" @@ -147,26 +57,36 @@ install -D -m 755 ipnmac/ipnmac.x86 $bootcd/usr/sbin/ipnmac # Install configuration files echo "* Installing configuration files" for file in fstab mtab modprobe.conf inittab hosts sysctl.conf ; do - install -D -m 644 conf_files/$file $bootcd/etc/$file + install -D -m 644 etc/$file $bootcd/etc/$file done # Install initscripts echo "* Installing initscripts" for file in pl_sysinit pl_hwinit pl_netinit pl_validateconf pl_boot ; do - install -D -m 755 conf_files/$file $bootcd/etc/init.d/$file + sed -i -e "s,@PLDISTRO@,$pldistro,g" -e "s,@FCDISTRO@,$fcdistro,g" initscripts/$file + install -D -m 755 initscripts/$file $bootcd/etc/init.d/$file done +# connect the scripts for upstart +# fedora 9 comes with /sbin/init from upstart, that uses /etc/event.d instead of inittab +# (in fact inittab is read for determining the default runlevel) +if [ -d $bootcd/etc/event.d ] ; then + echo "* Tuning /etc/event.d for upstart" + pushd $bootcd/etc/event.d + # use our system initialisation script + sed -i -e 's,/etc/rc.d/rc.sysinit[a-z\.]*,/etc/init.d/pl_sysinit,g' * + # use our startup script in runlevel 2 + sed -i -e 's,/etc/rc\.d/rc[ \t][ \t]*2,/etc/init.d/pl_boot,g' rc2 + popd +fi + +# Write nodefamily stamp, to help bootmanager do the right thing +mkdir -p $bootcd/etc/planetlab +echo $nodefamily > $bootcd/etc/planetlab/nodefamily + # Install fallback node configuration file echo "* Installing fallback node configuration file" -install -D -m 644 conf_files/default-net.cnf $bootcd/usr/boot/default-net.cnf - -# Build pcitable for hardware detection -echo "* Building pcitable for hardware detection" -pci_map_file=$(find $bootcd/lib/modules/ -name modules.pcimap | head -1) -module_dep_file=$(find $bootcd/lib/modules/ -name modules.dep | head -1) -pci_table=$bootcd/usr/share/hwdata/pcitable -$srcdir/bootmanager/source/merge_hw_tables.py \ - $module_dep_file $pci_map_file $pci_table $bootcd/etc/pl_pcitable +install -D -m 644 usr-boot/default-node.txt $bootcd/usr/boot/default-node.txt # Copy /etc/passwd out install -D -m 644 $bootcd/etc/passwd build/passwd @@ -190,14 +110,6 @@ ln -sf /sbin/init $bootcd/init # Pack the rest into a compressed archive echo "* Compressing reference image" -(cd $bootcd && find . | cpio --quiet -c -o) | gzip -9 >$isofs/bootcd.img - -# Build syslinux -echo "* Building syslinux" -CFLAGS="-Werror -Wno-unused -finline-limit=2000" make -C syslinux - -# Install isolinux -echo "* Installing isolinux" -install -D -m 644 syslinux/isolinux.bin $isofs/isolinux.bin +(cd $bootcd && find . | cpio --quiet -c -o) | gzip -9 > $isofs/bootcd.img exit 0