pvc-installer/grub.cfg

38 lines
1.0 KiB
INI
Raw Normal View History

if loadfont $prefix/font.pf2 ; then
set gfxmode=800x600
set gfxpayload=keep
insmod efi_gop
insmod efi_uga
insmod video_bochs
insmod video_cirrus
insmod gfxterm
insmod png
terminal_output gfxterm
fi
2019-06-15 17:24:14 -04:00
set theme=($root)/boot/grub/theme.txt
2019-06-15 17:53:31 -04:00
background_image /splash.png
insmod play
play 960 440 1 0 4 440 1
if [ ${iso_path} ] ; then
2019-06-15 17:24:14 -04:00
set loopback="findiso=${iso_path}"
fi
2019-06-13 23:10:07 -04:00
set timeout=10
2019-06-15 17:24:14 -04:00
menuentry "PVC Live Installer" {
2019-06-13 19:48:36 -04:00
linux /live/vmlinuz boot=live components splash quiet "${loopback}"
initrd /live/initrd.img
2019-06-15 17:53:31 -04:00
echo -en "\n\n\n\n\n\n\n\n\n\n\n\t\t\tBooting PVC live installer..."
}
menuentry "Traditional Debian Installer (graphical)" {
linux /d-i/gtk/vmlinuz append video=vesa:ywrap,mtrr vga=788 "${loopback}"
initrd /d-i/gtk/initrd.gz
2019-06-15 17:53:31 -04:00
echo -en "\n\n\n\n\n\n\n\n\n\n\n\t\t\tBooting Debian installer (graphical)..."
}
menuentry "Traditional Debian Installer (console)" {
linux /d-i/vmlinuz "${loopback}"
initrd /d-i/initrd.gz
2019-06-15 17:53:31 -04:00
echo -en "\n\n\n\n\n\n\n\n\n\n\n\t\t\tBooting Debian installer (console)..."
}