Created
February 6, 2016 02:02
-
-
Save gojun077/d5c1a82902da61335d5e to your computer and use it in GitHub Desktop.
Grub menu for net install of fedora 23 via UEFI PXE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
menuentry 'Fedora 23' --class fedora --class gnu-linux --class gnu --class os { | |
linuxefi images/fedora23_x64/vmlinuz ip=dhcp inst.repo=http://192.168.95.97:8080 inst.vnc inst.vncconnect=192.168.95.97:5500 | |
initrdefi images/fedora23_x64/initrd.img | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment