44638fbc8d
Currently, yaboot is the ISO boot loader in fedora and the Fedora on POWER team is making an effort in order to replace it by GRUB2 in the F20 release cycle. I'm sending a lorax patch so you guys can comment on it. I'm planning to create a feature page for that too. This patch only change the lorax template for ppc and should not affect other archs, like x86. -- Paulo Flabiano Smorigo Software Engineer Linux Technology Center - IBM Systems & Technology Group
35 lines
975 B
INI
35 lines
975 B
INI
set default=0
|
|
set timeout=5
|
|
|
|
echo -e "\nWelcome to the @PRODUCT@ @VERSION@ installer!\n\n"
|
|
|
|
for BITS in 32 64; do
|
|
if [ -d "/ppc/ppc${BITS}" ]; then
|
|
menuentry "Install @PRODUCT@ @VERSION@ (${BITS}-bit kernel)" $BITS --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc${2}/vmlinuz @ROOT@ ro
|
|
initrd /ppc/ppc${2}/initrd.img
|
|
}
|
|
|
|
menuentry "Test this media & install @PRODUCT@ @VERSION@ (${BITS}-bit kernel)" $BITS --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc${2}/vmlinuz @ROOT@ rd.live.check ro
|
|
initrd /ppc/ppc${2}/initrd.img
|
|
}
|
|
|
|
menuentry "Rescue a @PRODUCT@ system (${BITS}-bit kernel)" $BITS --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc${2}/vmlinuz @ROOT@ rescue ro
|
|
initrd /ppc/ppc${2}/initrd.img
|
|
}
|
|
fi
|
|
done
|
|
|
|
submenu 'Other options...' {
|
|
menuentry 'Reboot' {
|
|
reboot
|
|
}
|
|
|
|
menuentry 'Exit to Open Firmware' {
|
|
exit
|
|
}
|
|
}
|
|
|