66375dd12a292aca9c15460e6b61dd1b1e90a7e0
[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 OS of first partition on first disk" {
25     set root=(hd0,1)
26     chainloader +1
27 }