823e54dabf
These were apparently lost in the transition to livemedia-creator. livecd-creator added them in it's code, and lmc based its live config files on the the boot.iso configs which do not include it (on purpose).
43 lines
1.1 KiB
INI
43 lines
1.1 KiB
INI
set default="1"
|
|
|
|
function load_video {
|
|
if [ x$feature_all_video_module = xy ]; then
|
|
insmod all_video
|
|
else
|
|
insmod efi_gop
|
|
insmod efi_uga
|
|
insmod ieee1275_fb
|
|
insmod vbe
|
|
insmod vga
|
|
insmod video_bochs
|
|
insmod video_cirrus
|
|
fi
|
|
}
|
|
|
|
load_video
|
|
set gfxpayload=keep
|
|
insmod gzio
|
|
insmod part_gpt
|
|
insmod ext2
|
|
|
|
set timeout=60
|
|
### END /etc/grub.d/00_header ###
|
|
|
|
search --no-floppy --set=root -l '@ISOLABEL@'
|
|
|
|
### BEGIN /etc/grub.d/10_linux ###
|
|
menuentry 'Start @PRODUCT@ @VERSION@' --class red --class gnu-linux --class gnu --class os {
|
|
linux @KERNELPATH@ @ROOT@ @EXTRA@ rd.live.image quiet rhgb
|
|
initrd @INITRDPATH@
|
|
}
|
|
menuentry 'Test this media & start @PRODUCT@ @VERSION@' --class red --class gnu-linux --class gnu --class os {
|
|
linux @KERNELPATH@ @ROOT@ @EXTRA@ rd.live.image rd.live.check quiet
|
|
initrd @INITRDPATH@
|
|
}
|
|
submenu 'Troubleshooting -->' {
|
|
menuentry 'Install @PRODUCT@ @VERSION@ in basic graphics mode' --class red --class gnu-linux --class gnu --class os {
|
|
linux @KERNELPATH@ @ROOT@ @EXTRA@ rd.live.image nomodeset quiet rhgb
|
|
initrd @INITRDPATH@
|
|
}
|
|
}
|