X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=templates%2Fboot%2Fgrub%2Fnetboot.cfg;fp=templates%2Fboot%2Fgrub%2Fnetboot.cfg;h=8be1cd4146edd1983c9c1e603d4de94f02ec1ffa;hb=9f9c7d66af50b45ebe197854600298b97f7cb685;hp=0000000000000000000000000000000000000000;hpb=67df7006433d0dcdb0262ea86b6c030ddfd46ae2;p=grml-live.git diff --git a/templates/boot/grub/netboot.cfg b/templates/boot/grub/netboot.cfg new file mode 100644 index 0000000..8be1cd4 --- /dev/null +++ b/templates/boot/grub/netboot.cfg @@ -0,0 +1,25 @@ +# GRUB PXE configuration file + +# adjust according to your needs +#set timeout=300 + +insmod png +set gfxmode=auto +insmod gfxterm +terminal_output gfxterm + +set menu_color_normal=white/black +set menu_color_highlight=black/yellow + +menuentry "%GRML_NAME% Standard (%VERSION%, %ARCH%)" { + set gfxpayload=keep + echo 'Loading kernel...' + 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 + echo 'Loading initrd...' + initrd initrd.img +} + +menuentry "Boot OS of first partition on first disk" { + set root=(hd0,1) + chainloader +1 +}