Fix installer priority handling on pegasos. Closes: #679798.

Thanks to Milan Kupcevic for the patch.
This commit is contained in:
Steve McIntyre 2012-07-05 23:33:51 +00:00
parent 771029da84
commit e14db2ce84
2 changed files with 8 additions and 4 deletions

View File

@ -9,7 +9,7 @@
\
\ boot menu stuff
\
: my-max-boot-num 4 ;
: my-max-boot-num 5 ;
: my-boot-default 1 ;
: my-boot-delay d# 300 ; \ unit = 100 ms
: my-print-menu ( -- )
@ -30,16 +30,18 @@
." 1: install" cr
." 2: expert" cr
." 3: rescue" cr
." 4: return to OF prompt" cr
." 4: auto" cr
." 5: return to OF prompt" cr
." " cr
;
: my-boot-case ( num -- )
." " cr
case
1 of " cd install/powerpc/vmlinuz-chrp.initrd --" endof
2 of " cd install/powerpc/vmlinuz-chrp.initrd DEBCONF_PRIORITY=low --" endof
2 of " cd install/powerpc/vmlinuz-chrp.initrd priority=low --" endof
3 of " cd install/powerpc/vmlinuz-chrp.initrd rescue/enable=true --" endof
4 of " none" endof
4 of " cd install/powerpc/vmlinuz-chrp.initrd auto=true priority=critical --" endof
5 of " none" endof
endcase
$boot
;

2
debian/changelog vendored
View File

@ -10,6 +10,8 @@ debian-cd (3.1.9) UNRELEASED; urgency=low
* Switch over to working with new task-* metapackages. Closes: #672941
* Add espeakup to forcd1, so we get speech synthesis for a11y early on full
CD/DVD sets. Closes: #678064
* Fix installer priority handling on pegasos. Closes: #679798.
Thanks to Milan Kupcevic for the patch.
-- Steve McIntyre <93sam@debian.org> Tue, 29 May 2012 06:20:20 +0800