Provide setup files for EFI boot in netboot package
[grml-live.git] / templates / boot / grub / netboot.cfg
1 # GRUB PXE configuration file
2
3 # adjust according to your needs
4 #set timeout=300
5
6 insmod png
7 set gfxmode=auto
8 insmod gfxterm
9 terminal_output gfxterm
10
11 set menu_color_normal=white/black
12 set menu_color_highlight=black/yellow
13
14 menuentry "%GRML_NAME% Standard (%VERSION%, %ARCH%)" {
15     set gfxpayload=keep
16     echo 'Loading kernel...'
17     linux  vmlinuz root=/dev/nfs rw nfsroot=192.168.0.1:/live/image boot=live live-media-path=/live/%GRML_NAME%/ bootid=%BOOTID% apm=power-off nomce net.ifnames=0 noprompt noeject 
18     echo 'Loading initrd...'
19     initrd initrd.img
20 }
21
22 menuentry "Boot OS of first partition on first disk" {
23     set root=(hd0,1)
24     chainloader +1
25 }