GRUB: drop `insmod vbe`
[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    terminal_output gfxterm
9 fi
10
11 if [ -f /boot/grub/grml-theme/theme.txt ] ; then
12   set theme=/boot/grub/grml-theme/theme.txt
13   export theme
14 else
15   set menu_color_normal=white/black
16   set menu_color_highlight=black/yellow
17   export menu_color_normal
18   export menu_color_highlight
19 fi
20
21 if [ ${iso_path} ] ; then
22     set loopback="findiso=${iso_path}"
23     export loopback
24 fi