[powerpc] Added a rescue option to yaboot.conf as well as the pegasos boot script.
This commit is contained in:
parent
13b0587c4d
commit
1d04c047c9
|
@ -9,7 +9,7 @@
|
|||
\
|
||||
\ boot menu stuff
|
||||
\
|
||||
: my-max-boot-num 3 ;
|
||||
: my-max-boot-num 4 ;
|
||||
: my-boot-default 1 ;
|
||||
: my-boot-delay d# 300 ; \ unit = 100 ms
|
||||
: my-print-menu ( -- )
|
||||
|
@ -29,7 +29,8 @@
|
|||
." " cr
|
||||
." 1: install" cr
|
||||
." 2: expert" cr
|
||||
." 3: return to OF prompt" cr
|
||||
." 3: rescue" cr
|
||||
." 4: return to OF prompt" cr
|
||||
." " cr
|
||||
;
|
||||
: my-boot-case ( num -- )
|
||||
|
@ -37,7 +38,8 @@
|
|||
case
|
||||
1 of " cd install/powerpc/vmlinuz-chrp.initrd devfs=mount,dall init=/linuxrc --" endof
|
||||
2 of " cd install/powerpc/vmlinuz-chrp.initrd DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc --" endof
|
||||
3 of " none" endof
|
||||
3 of " cd install/powerpc/vmlinuz-chrp.initrd devfs=mount,dall init=/linuxrc rescue/enable=true --" endof
|
||||
4 of " none" endof
|
||||
endcase
|
||||
$boot
|
||||
;
|
||||
|
|
|
@ -26,6 +26,13 @@ image=/install/powerpc/vmlinux
|
|||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
image=/install/powerpc/vmlinux
|
||||
label=rescue
|
||||
initrd=/install/powerpc/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc rescue/enable=true --"
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
# PowerPC 64bit subarch
|
||||
image=/install/powerpc64/vmlinux
|
||||
label=install64
|
||||
|
@ -41,3 +48,9 @@ image=/install/powerpc64/vmlinux
|
|||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
image=/install/powerpc64/vmlinux
|
||||
label=rescue64
|
||||
initrd=/install/powerpc64/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc rescue/enable=true --"
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
|
|
@ -136,7 +136,11 @@ debian-cd (2.2.25) UNRELEASED; urgency=low
|
|||
[ Colin Watson ]
|
||||
* Cope with cdrom64 -> cdrom renaming for powerpc64 subarchitecture.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Tue, 22 Aug 2006 17:57:09 -0400
|
||||
[ Sven Luther ]
|
||||
* [powerpc] Added a rescue option to yaboot.conf as well as the pegasos boot
|
||||
script.
|
||||
|
||||
-- Sven Luther <sven@tael.powerlinux.fr> Wed, 6 Sep 2006 21:38:33 +0200
|
||||
|
||||
debian-cd (2.2.24) unstable; urgency=low
|
||||
|
||||
|
|
Loading…
Reference in New Issue