36 lines
876 B
INI
36 lines
876 B
INI
set timeout=30
|
|
|
|
loadfont unicode
|
|
|
|
set menu_color_normal=white/black
|
|
set menu_color_highlight=black/light-gray
|
|
|
|
menuentry "Try or Install Ubuntu" {
|
|
set gfxpayload=keep
|
|
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed maybe-ubiquity quiet splash ---
|
|
initrd /casper/initrd
|
|
}
|
|
menuentry "Ubuntu (safe graphics)" {
|
|
set gfxpayload=keep
|
|
linux /casper/vmlinuz nomodeset file=/cdrom/preseed/ubuntu.seed maybe-ubiquity quiet splash ---
|
|
initrd /casper/initrd
|
|
}
|
|
menuentry "OEM install (for manufacturers)" {
|
|
set gfxpayload=keep
|
|
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed only-ubiquity oem-config/enable=true quiet splash ---
|
|
initrd /casper/initrd
|
|
}
|
|
grub_platform
|
|
if [ "$grub_platform" = "efi" ]; then
|
|
menuentry 'Boot from next volume' {
|
|
exit 1
|
|
}
|
|
menuentry 'UEFI Firmware Settings' {
|
|
fwsetup
|
|
}
|
|
else
|
|
menuentry 'Test memory' {
|
|
linux16 /boot/memtest86+.bin
|
|
}
|
|
fi
|