access floppy reorg

This commit is contained in:
Joey Hess 2004-09-11 23:07:43 +00:00
parent 440aa13100
commit 57cf49e6fc
2 changed files with 19 additions and 2 deletions

1
debian/changelog vendored
View File

@ -9,6 +9,7 @@ debian-cd (2.2.20) UNRELEASED; urgency=low
partitioner, and discover2-data-udeb, which are not in unstable for i386
any longer.
- Updated exclude-udebs to match the current CD initrd package list.
- Access floppy reorg.
* Stephen R. Marenka
- Add support for m68k reorganization.
- Bump m68k 2.4 kernels to 2.4.27.

View File

@ -46,9 +46,12 @@ KTYPE[10]=""
THISTYPE=${KTYPE[$NN]}
BOOT_IMAGES="cdrom/boot.img cdrom/initrd.gz cdrom/vmlinuz cdrom/debian-cd_info.tar.gz"
DISK_IMAGES="floppy/cd-drivers.img floppy/boot.img floppy/root.img floppy/net-drivers.img floppy/asian-root.img floppy/access/boot.img floppy/access/root.img floppy/access/drivers.img "
DISK_IMAGES="floppy/cd-drivers.img floppy/boot.img floppy/root.img"
# Note that floppy/access/drivers.img was renamed to cd-drivers, both
# present for the transition.
EXTRA_DISK_IMAGES="floppy/access/root.img floppy/access/boot.img floppy/access/cd-drivers.img floppy/access/drivers.img"
# Download boot images
# Download boot images and floppies.
for image in $BOOT_IMAGES $DISK_IMAGES; do
if [ ! -e "$image" ]; then
dir=$(dirname $image)
@ -61,6 +64,19 @@ for image in $BOOT_IMAGES $DISK_IMAGES; do
fi
done
# Floppies that are not really required or may be unavailable.
for image in $EXTRA_DISK_IMAGES; do
if [ ! -e "$image" ]; then
dir=$(dirname $image)
mkdir -p $dir
if [ ! "$DI_WWW_HOME" ];then
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/$image""$image" || true
else
wget "$DI_WWW_HOME/$image" -O "$image" || rm -f "$image"
fi
fi
done
if [ "$NN" = "1" ]; then
echo "Using ISOLINUX boot-disks image on CD$N"
mkdir -p boot$N/isolinux