Skip to content

Instantly share code, notes, and snippets.

@gojun077
Created February 6, 2016 02:02
Show Gist options
  • Save gojun077/d5c1a82902da61335d5e to your computer and use it in GitHub Desktop.
Save gojun077/d5c1a82902da61335d5e to your computer and use it in GitHub Desktop.
Grub menu for net install of fedora 23 via UEFI PXE
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