You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
706 B
34 lines
706 B
if loadfont $prefix/font.pf2 ; then
|
|
set gfxmode=800x600
|
|
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
|
|
else
|
|
set menu_color_normal=cyan/blue
|
|
set menu_color_highlight=white/blue
|
|
fi
|
|
|
|
insmod play
|
|
play 480 440 1
|
|
|
|
menuentry "Test or install PureOS (@FLAVOR@)" {
|
|
set gfxpayload=keep
|
|
linux @LINUX@ boot=casper @APPEND_LIVE@ ---
|
|
initrd @INITRD@
|
|
}
|
|
|
|
menuentry "Test or install PureOS (@FLAVOR@ failsafe)" {
|
|
set gfxpayload=keep
|
|
linux @LINUX@ boot=casper @APPEND_LIVE_FAILSAFE@ ---
|
|
initrd @INITRD@
|
|
}
|