Initial commit of autobuild/autodeploy PVC ISO system
This commit is contained in:
41
grub.cfg
Normal file
41
grub.cfg
Normal file
@ -0,0 +1,41 @@
|
||||
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
|
||||
|
||||
if background_image /isolinux/splash.png; then
|
||||
set color_normal=light-gray/black
|
||||
set color_highlight=white/black
|
||||
elif background_image /splash.png; then
|
||||
set color_normal=light-gray/black
|
||||
set color_highlight=white/black
|
||||
else
|
||||
set menu_color_normal=cyan/blue
|
||||
set menu_color_highlight=white/blue
|
||||
fi
|
||||
|
||||
insmod play
|
||||
play 960 440 1 0 4 440 1
|
||||
if [ ${iso_path} ] ; then
|
||||
set loopback="findiso=${iso_path}"
|
||||
fi
|
||||
|
||||
menuentry "PVC Live Installer" {
|
||||
linux /live/vmlinuz-4.19.0-4-amd64 boot=live components splash quiet "${loopback}"
|
||||
initrd /live/initrd.img-4.19.0-4-amd64
|
||||
}
|
||||
menuentry "Traditional Debian Installer (graphical)" {
|
||||
linux /d-i/gtk/vmlinuz append video=vesa:ywrap,mtrr vga=788 "${loopback}"
|
||||
initrd /d-i/gtk/initrd.gz
|
||||
}
|
||||
menuentry "Traditional Debian Installer (console)" {
|
||||
linux /d-i/vmlinuz "${loopback}"
|
||||
initrd /d-i/initrd.gz
|
||||
}
|
Reference in New Issue
Block a user