d290dd8b8350a42dcde551712204892faf6b9576
[grml-live.git] / templates / boot / grub / grub.cfg
1 ## grub2 configuration
2 set default=0
3 set timeout=20
4
5 if loadfont /boot/grub/ascii.pf2 ; then
6    insmod png
7    set gfxmode=auto
8    insmod gfxterm
9    insmod vbe
10    terminal_output gfxterm
11 fi
12
13 if [ -f /boot/grub/grml-theme/theme.txt ] ; then
14   set theme=/boot/grub/grml-theme/theme.txt
15 else
16   set menu_color_normal=white/black
17   set menu_color_highlight=black/yellow
18 fi
19
20 if [ ${iso_path} ] ; then
21     set loopback="findiso=${iso_path}"
22 fi
23
24 insmod regexp
25
26 for config in /boot/grub/*_default.cfg ; do source "$config" ; done
27 for config in /boot/grub/*_options.cfg ; do source "$config" ; done
28 source /boot/grub/addons.cfg
29
30 source /boot/grub/footer.cfg
31 # EOF