mirror of
https://gitee.com/liushuncheng-lsc/lfs-livecd.git
synced 2025-02-10 07:34:36 +08:00
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
|
set default="1"
|
||
|
|
||
|
function load_video {
|
||
|
insmod efi_gop
|
||
|
insmod efi_uga
|
||
|
insmod video_bochs
|
||
|
insmod video_cirrus
|
||
|
insmod all_video
|
||
|
}
|
||
|
|
||
|
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 'Fedora-i3-Live-40-1-14'
|
||
|
|
||
|
### BEGIN /etc/grub.d/10_linux ###
|
||
|
menuentry 'Start Fedora-i3-Live 40' --class fedora --class gnu-linux --class gnu --class os {
|
||
|
linuxefi /images/pxeboot/vmlinuz root=live:CDLABEL=Fedora-i3-Live-40-1-14 rd.live.image quiet rhgb
|
||
|
initrdefi /images/pxeboot/initrd.img
|
||
|
}
|
||
|
menuentry 'Test this media & start Fedora-i3-Live 40' --class fedora --class gnu-linux --class gnu --class os {
|
||
|
linuxefi /images/pxeboot/vmlinuz root=live:CDLABEL=Fedora-i3-Live-40-1-14 rd.live.image rd.live.check quiet
|
||
|
initrdefi /images/pxeboot/initrd.img
|
||
|
}
|
||
|
submenu 'Troubleshooting -->' {
|
||
|
menuentry 'Start Fedora-i3-Live 40 in basic graphics mode' --class fedora --class gnu-linux --class gnu --class os {
|
||
|
linuxefi /images/pxeboot/vmlinuz root=live:CDLABEL=Fedora-i3-Live-40-1-14 rd.live.image nomodeset quiet rhgb
|
||
|
initrdefi /images/pxeboot/initrd.img
|
||
|
}
|
||
|
}
|