- Add rescue stanzas to isolinux.cfg. Rescue mode is supported in
post-sarge d-i images only, but I guess it won't hurt to have the stanzas there even for sarge images. We may add rescue mode in r1 or something even..
This commit is contained in:
parent
0359eee355
commit
b49bfbf516
|
@ -87,6 +87,6 @@ debian-edu-install-udeb
|
||||||
debian-edu-profile-udeb
|
debian-edu-profile-udeb
|
||||||
# If needed, will be on the initrd already.
|
# If needed, will be on the initrd already.
|
||||||
module-init-tools-udeb
|
module-init-tools-udeb
|
||||||
# Not used yet. When it is, they will go in the initrd.
|
|
||||||
localechooser
|
|
||||||
rescue-check
|
rescue-check
|
||||||
|
# Not used yet. When it is, will go in the initrd.
|
||||||
|
localechooser
|
||||||
|
|
|
@ -3,6 +3,10 @@ debian-cd (2.2.22) UNRELEASED; urgency=low
|
||||||
* Joey Hess
|
* Joey Hess
|
||||||
- Add post-sarge udebs rescue-check, initrd-preseed, and preseed-common
|
- Add post-sarge udebs rescue-check, initrd-preseed, and preseed-common
|
||||||
to the udeb exclude list since these will be/are inluded on sid initrds.
|
to the udeb exclude list since these will be/are inluded on sid initrds.
|
||||||
|
- Add rescue stanzas to isolinux.cfg. Rescue mode is supported in
|
||||||
|
post-sarge d-i images only, but I guess it won't hurt to have the
|
||||||
|
stanzas there even for sarge images. We may add rescue mode in r1
|
||||||
|
or something even..
|
||||||
* Steve McIntyre
|
* Steve McIntyre
|
||||||
- Make woody's post-boot-mipsel script cope with extra fields in the
|
- Make woody's post-boot-mipsel script cope with extra fields in the
|
||||||
output of sarge's isoinfo
|
output of sarge's isoinfo
|
||||||
|
@ -11,7 +15,7 @@ debian-cd (2.2.22) UNRELEASED; urgency=low
|
||||||
have more than 9 CDs, so ?.packages doesn't cut it any more.
|
have more than 9 CDs, so ?.packages doesn't cut it any more.
|
||||||
- Don't copy the whole d-i cdrom directory onto CD1 for amd64.
|
- Don't copy the whole d-i cdrom directory onto CD1 for amd64.
|
||||||
Closes: #306926
|
Closes: #306926
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Thu, 14 Apr 2005 00:59:49 -0400
|
-- Joey Hess <joeyh@debian.org> Thu, 14 Apr 2005 00:59:49 -0400
|
||||||
|
|
||||||
debian-cd (2.2.21) unstable; urgency=low
|
debian-cd (2.2.21) unstable; urgency=low
|
||||||
|
|
|
@ -114,6 +114,9 @@ LABEL cdrom
|
||||||
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 devfs=mount,dall rw --
|
append DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||||
|
LABEL rescue
|
||||||
|
kernel /install/vmlinuz
|
||||||
|
append rescue/enable=true vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||||
DISPLAY isolinux.txt
|
DISPLAY isolinux.txt
|
||||||
TIMEOUT 0
|
TIMEOUT 0
|
||||||
PROMPT 1
|
PROMPT 1
|
||||||
|
@ -147,6 +150,12 @@ LABEL expert
|
||||||
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 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 devfs=mount,dall rw --
|
||||||
|
LABEL rescue
|
||||||
|
kernel /install/vmlinuz
|
||||||
|
append $KERNEL_PARAMS rescue/enable=true vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||||
|
LABEL rescue26
|
||||||
|
kernel /install/2.6/vmlinuz
|
||||||
|
append $KERNEL_PARAMS rescue/enable=true vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||||
DISPLAY isolinux.txt
|
DISPLAY isolinux.txt
|
||||||
TIMEOUT 0
|
TIMEOUT 0
|
||||||
PROMPT 1
|
PROMPT 1
|
||||||
|
|
Loading…
Reference in New Issue