38 lines
918 B
INI
38 lines
918 B
INI
set default="0"
|
|
|
|
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=10
|
|
### END /etc/grub.d/00_header ###
|
|
|
|
search --no-floppy --set=root -l 'Fedora-E-dvd-x86_64-44'
|
|
|
|
### BEGIN /etc/grub.d/10_linux ###
|
|
menuentry 'Lokales UEFI-System booten' --class hdd --class os {
|
|
insmod part_gpt
|
|
insmod fat
|
|
insmod chain
|
|
|
|
search --no-floppy --file --set=local_efi /EFI/fedora/shimx64.efi
|
|
|
|
chainloader ($local_efi)/EFI/fedora/shimx64.efi
|
|
boot
|
|
}
|
|
|
|
menuentry 'Tuxflotte Provisioning - Fedora Workstation' --class fedora --class gnu-linux --class gnu --class os {
|
|
linux /images/pxeboot/vmlinuz inst.stage2=hd:LABEL=Fedora-E-dvd-x86_64-44 inst.ks=https://anode.tuxflotte.de/installers/fedora-workstation/ks.cfg ip=dhcp quiet
|
|
initrd /images/pxeboot/initrd.img
|
|
}
|