Add "--" end of installer kernel params markers to the isolinux.cfg.

This commit is contained in:
Joey Hess 2004-08-18 19:14:56 +00:00
parent 9c619305e7
commit 3e1a947848
2 changed files with 7 additions and 6 deletions

1
debian/changelog vendored
View File

@ -63,6 +63,7 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
- Update the task lists and popcon again. - Update the task lists and popcon again.
- Stop excluding 686 and 686-smp kernels, as these are probably the most - Stop excluding 686 and 686-smp kernels, as these are probably the most
popular, and they fit on CD#1 now. popular, and they fit on CD#1 now.
- Add "--" end of installer kernel params markers to the isolinux.cfg.
* Petter Reinholdtsen * Petter Reinholdtsen
- Regenereated tasks/popularity-contest-sarge based on the current data. - Regenereated tasks/popularity-contest-sarge based on the current data.
- Avoid kernel versions 2.4.24 and 2.6.3 on the first i386 CD, as we - Avoid kernel versions 2.4.24 and 2.6.3 on the first i386 CD, as we

View File

@ -83,14 +83,14 @@ fi
write_isolinix_config () { write_isolinix_config () {
cat > boot$N/isolinux/isolinux.cfg <<EOF cat > boot$N/isolinux/isolinux.cfg <<EOF
DEFAULT /install/vmlinuz DEFAULT /install/vmlinuz
APPEND vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw APPEND vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw --
LABEL linux LABEL linux
kernel /install/vmlinuz kernel /install/vmlinuz
LABEL cdrom LABEL cdrom
kernel /install/vmlinuz kernel /install/vmlinuz
LABEL expert LABEL expert
kernel /install/vmlinuz kernel /install/vmlinuz
append DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw append DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw --
DISPLAY isolinux.txt DISPLAY isolinux.txt
TIMEOUT 0 TIMEOUT 0
PROMPT 1 PROMPT 1
@ -110,20 +110,20 @@ EOF
write_isolinux_config_26 () { write_isolinux_config_26 () {
cat > boot$N/isolinux/isolinux.cfg <<EOF cat > boot$N/isolinux/isolinux.cfg <<EOF
DEFAULT /install/vmlinuz DEFAULT /install/vmlinuz
APPEND $KERNEL_PARAMS vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw APPEND $KERNEL_PARAMS vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw --
LABEL linux LABEL linux
kernel /install/vmlinuz kernel /install/vmlinuz
LABEL cdrom LABEL cdrom
kernel /install/vmlinuz kernel /install/vmlinuz
LABEL linux26 LABEL linux26
kernel /install/2.6/vmlinuz kernel /install/2.6/vmlinuz
append $KERNEL_PARAMS vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw append $KERNEL_PARAMS vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw --
LABEL expert LABEL expert
kernel /install/vmlinuz kernel /install/vmlinuz
append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw --
LABEL expert26 LABEL expert26
kernel /install/2.6/vmlinuz kernel /install/2.6/vmlinuz
append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw --
DISPLAY isolinux.txt DISPLAY isolinux.txt
TIMEOUT 0 TIMEOUT 0
PROMPT 1 PROMPT 1