2005-05-05 16:15:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Do install stuff for amd64, including making bootable CDs
|
|
|
|
# Works with debian-installer
|
|
|
|
#
|
|
|
|
# $1 is the CD number
|
|
|
|
# $2 is the temporary CD build dir
|
|
|
|
|
|
|
|
. $BASEDIR/tools/boot/$DI_CODENAME/common.sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
N=$1
|
|
|
|
CDDIR=$2
|
|
|
|
BOOTDIR=
|
|
|
|
if [ "$DI_WWW_HOME" = "default" ];then
|
2006-06-15 19:25:33 +00:00
|
|
|
DI_WWW_HOME="http://amd64.debian.net/debian-installer/daily"
|
2005-05-26 17:56:34 +00:00
|
|
|
if [ -n "$DI_DIR" ];then
|
|
|
|
DI_DIR="$DI_DIR/${DI_WWW_HOME##*/}"
|
|
|
|
DI_WWW_HOME=""
|
|
|
|
fi
|
2005-05-05 16:15:44 +00:00
|
|
|
fi
|
|
|
|
if [ ! "$DI_DIST" ]; then
|
|
|
|
DI_DIST="$DI_CODENAME"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $CDDIR/..
|
|
|
|
|
|
|
|
# This script is called with $1 (now $N) as the CD to
|
|
|
|
# make bootable. N may be in the form "n" or "n_NONUS"
|
|
|
|
# There may be more than 4 disks...support extras.
|
|
|
|
|
|
|
|
# Strip NONUS part of disk number
|
|
|
|
# NN will be 1...N so it can be used as an index
|
|
|
|
NN=`echo $N | sed -e 's/_NONUS//'`
|
|
|
|
|
2005-05-17 16:08:15 +00:00
|
|
|
if [ "$NN" != "1" ]; then
|
|
|
|
echo "CD$NN is not bootable"
|
|
|
|
exit 0
|
2005-05-05 16:15:44 +00:00
|
|
|
fi
|
|
|
|
|
2005-05-17 16:08:15 +00:00
|
|
|
BOOT_IMAGES="cdrom/initrd.gz cdrom/vmlinuz cdrom/debian-cd_info.tar.gz"
|
2005-05-05 16:15:44 +00:00
|
|
|
|
2005-05-17 16:08:15 +00:00
|
|
|
# Download boot images.
|
|
|
|
for image in $BOOT_IMAGES; do
|
2005-05-05 16:15:44 +00:00
|
|
|
if [ ! -e "$image" ]; then
|
|
|
|
dir=$(dirname $image)
|
|
|
|
mkdir -p $dir
|
2005-05-17 16:08:15 +00:00
|
|
|
if [ -n "$LOCAL" -a -f "${LOCALDEBS:-$MIRROR}/dists/$DI_DIST/local/installer-$ARCH/current/images/$image" ]; then
|
|
|
|
cp "${LOCALDEBS:-$MIRROR}/dists/$DI_DIST/local/installer-$ARCH/current/images/$image" "$image"
|
|
|
|
elif [ ! "$DI_WWW_HOME" ];then
|
2005-05-26 17:56:34 +00:00
|
|
|
if [ ! "$DI_DIR" ];then
|
|
|
|
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
|
|
|
|
fi
|
|
|
|
cp "$DI_DIR/$image" "$image"
|
2005-05-05 16:15:44 +00:00
|
|
|
else
|
|
|
|
wget "$DI_WWW_HOME/$image" -O "$image"
|
|
|
|
fi
|
|
|
|
fi
|
2005-05-17 16:08:15 +00:00
|
|
|
done
|
2005-05-05 16:15:44 +00:00
|
|
|
|
2005-05-17 16:08:15 +00:00
|
|
|
echo "Using ISOLINUX boot-disks image on CD$N"
|
|
|
|
mkdir -p boot$N/isolinux
|
|
|
|
cp -f $BASEDIR/data/$DI_CODENAME/isolinux.bin boot$N/isolinux/
|
|
|
|
cp -lf cdrom/vmlinuz $CDDIR/install/
|
|
|
|
cp -lf cdrom/initrd.gz $CDDIR/install/
|
|
|
|
echo -n "-cache-inodes -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table " > $N.mkisofs_opts
|
2005-05-05 16:15:44 +00:00
|
|
|
|
2005-05-17 16:08:15 +00:00
|
|
|
# Include Smart Boot Manager image for people where isolinux fails
|
|
|
|
gzip -dc $BASEDIR/data/$DI_CODENAME/sbm.bin.gz > $CDDIR/install/sbm.bin
|
|
|
|
# Keep the original file timestamp
|
|
|
|
touch -r $BASEDIR/data/$DI_CODENAME/sbm.bin.gz $CDDIR/install/sbm.bin
|
|
|
|
cp -p $BASEDIR/data/$DI_CODENAME/README.sbm $CDDIR/install/
|
2005-07-08 09:22:27 +00:00
|
|
|
# Isolinux setup including config and help files comes from d-i.
|
2005-05-17 16:08:15 +00:00
|
|
|
cat cdrom/debian-cd_info.tar.gz | (cd boot$N/isolinux/; tar zx)
|
|
|
|
if [ -e boot$N/isolinux/f3.txt.only26 ];then
|
|
|
|
mv boot$N/isolinux/f3.txt.only26 boot$N/isolinux/f3.txt
|
2005-05-05 16:15:44 +00:00
|
|
|
fi
|
2005-07-08 09:22:27 +00:00
|
|
|
|
2005-05-17 16:08:15 +00:00
|
|
|
if [ "$SPLASHPNG" ] ; then
|
|
|
|
# Insert our own splash screen. Color index 15 is
|
|
|
|
# background, and index 7 is foreground. Set to black and
|
|
|
|
# white respecively
|
|
|
|
pngtopnm < $SPLASHPNG | ppmquant 16 | \
|
|
|
|
ppmtolss16 "#ffffff=7" "#000000=15" > boot$N/isolinux/splash.rle
|
2005-05-05 16:15:44 +00:00
|
|
|
fi
|
|
|
|
|
2005-07-08 09:22:27 +00:00
|
|
|
if [ -n "$KERNEL_PARAMS" ]; then
|
|
|
|
# Substitute custom kernel params into the isolinux config
|
|
|
|
# file.
|
2005-12-17 16:53:52 -01:00
|
|
|
sed -i "s|append |append $KERNEL_PARAMS|" boot$N/isolinux/isolinux.cfg
|
2005-07-08 09:22:27 +00:00
|
|
|
fi
|
|
|
|
|
2005-05-05 16:15:44 +00:00
|
|
|
# write final lines to mkisofs_opts
|
2005-05-17 16:08:15 +00:00
|
|
|
echo -n "boot$N " >> $N.mkisofs_opts
|
2005-05-05 16:15:44 +00:00
|
|
|
|
|
|
|
# th,th, thats all
|