GRUB templates: do not set root/chainloader but just exit for boot from next device
[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 loadfont unicode
12
13 set menu_color_normal=white/black
14 set menu_color_highlight=black/yellow
15
16 menuentry "%GRML_NAME% Standard (%VERSION%, %ARCH%)" {
17     set gfxpayload=keep
18     echo 'Loading kernel...'
19     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 
20     echo 'Loading initrd...'
21     initrd initrd.img
22 }
23
24 menuentry "Boot from next device" {
25     exit
26 }