6db00b977e
Older versions of petitboot don't understand the for loop and won't
boot. We also don't shipt 32 bit media anymore so there is no reason
for this to remain.
(cherry picked from commit 5909574a44
)
31 lines
832 B
INI
31 lines
832 B
INI
set default=0
|
|
set timeout=5
|
|
|
|
echo -e "\nWelcome to the @PRODUCT@ @VERSION@ installer!\n\n"
|
|
|
|
menuentry "Install @PRODUCT@ @VERSION@ (64-bit kernel)" --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc64/vmlinuz @ROOT@ ro
|
|
initrd /ppc/ppc64/initrd.img
|
|
}
|
|
|
|
menuentry "Test this media & install @PRODUCT@ @VERSION@ (64-bit kernel)" --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc64/vmlinuz @ROOT@ rd.live.check ro
|
|
initrd /ppc/ppc64/initrd.img
|
|
}
|
|
|
|
menuentry "Rescue a @PRODUCT@ system (64-bit kernel)" --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc64/vmlinuz @ROOT@ rescue ro
|
|
initrd /ppc/ppc64/initrd.img
|
|
}
|
|
|
|
submenu 'Other options...' {
|
|
menuentry 'Reboot' {
|
|
reboot
|
|
}
|
|
|
|
menuentry 'Exit to Open Firmware' {
|
|
exit
|
|
}
|
|
}
|
|
|