This commit is contained in:
Kenshi Muto 2004-10-01 00:05:06 +00:00
parent 899b81e78a
commit 7a550c08b1
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -30,6 +30,7 @@ debian-cd (2.2.20) UNRELEASED; urgency=low
- Add floppy/asian-root.img, floppy/mideast-root.img and
floppy/cyrillic-root.img to EXTRA_DISK_IMAGES (but may it be treated
as DISK_IMAGES?)
- Fix typo in test evaluation. (tools/boot/sarge/boot-i386)
* Colin Watson
- Add "--" end of installer kernel params markers to yaboot.conf.
- Drop compatibility with old powerpc 2.4/2.6 d-i image layout, since

View File

@ -48,7 +48,7 @@ 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"
# Only include extra disk images on full CDs, not on smaller images.
if [ "$INSTALLER_CD" =! 1 ] && [ "$INSTALLER_CD" =! 2 ]; then
if [ "$INSTALLER_CD" != 1 ] && [ "$INSTALLER_CD" != 2 ]; then
# Note that floppy/access/drivers.img was renamed to cd-drivers, both
# present for the transition.
EXTRA_DISK_IMAGES="floppy/net-drivers.img floppy/access/root.img floppy/access/boot.img floppy/access/cd-drivers.img floppy/access/drivers.img"