Added support for netboot.xyz
[grml-live.git] / templates / boot / grub / header.cfg
1 set default=0
2 set timeout=20
3
4 if loadfont /boot/grub/ascii.pf2 ; then
5    insmod png
6    set gfxmode=auto
7    insmod gfxterm
8    insmod vbe
9    terminal_output gfxterm
10 fi
11
12 if [ -f /boot/grub/grml-theme/theme.txt ] ; then
13   set theme=/boot/grub/grml-theme/theme.txt
14   export theme
15 else
16   set menu_color_normal=white/black
17   set menu_color_highlight=black/yellow
18   export menu_color_normal
19   export menu_color_highlight
20 fi
21
22 if [ ${iso_path} ] ; then
23     set loopback="findiso=${iso_path}"
24     export loopback
25 fi