a710d17294
This adds a new livemedia-creator argument, --extra-boot-args, which can be used to add arguments to the kernel command-line in the templates. Related: rhbz#1687743
30 lines
803 B
INI
30 lines
803 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 "Start @PRODUCT@ @VERSION@ (${BITS}-bit kernel)" $BITS --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc${2}/vmlinuz @ROOT@ @EXTRA@ ro rd.live.image quiet
|
|
initrd /ppc/ppc${2}/initrd.img
|
|
}
|
|
|
|
menuentry "Test this media & start @PRODUCT@ @VERSION@ (${BITS}-bit kernel)" $BITS --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /ppc/ppc${2}/vmlinuz @ROOT@ @EXTRA@ rd.live.image rd.live.check ro quiet
|
|
initrd /ppc/ppc${2}/initrd.img
|
|
}
|
|
fi
|
|
done
|
|
|
|
submenu 'Other options...' {
|
|
menuentry 'Reboot' {
|
|
reboot
|
|
}
|
|
|
|
menuentry 'Exit to Open Firmware' {
|
|
exit
|
|
}
|
|
}
|
|
|