forked from Penguin766/ubuntu-desnap-vanilla-gnome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrub.cfg
31 lines (28 loc) · 875 Bytes
/
grub.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
set timeout=30
loadfont unicode
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
menuentry "Ubuntu desnap" {
set gfxpayload=keep
linux /casper/vmlinuz boot=casper file=/cdrom/preseed/ubuntu.seed maybe-ubiquity ignore_uuid quiet splash ---
initrd /casper/initrd
}
menuentry "Ubuntu desnap" {
set gfxpayload=keep
linux /casper/vmlinuz boot=casper nomodeset file=/cdrom/preseed/ubuntu.seed maybe-ubiquity ignore_uuid quiet splash ---
initrd /casper/initrd
}
menuentry "OEM install (for manufacturers)" {
set gfxpayload=keep
linux /casper/vmlinuz boot=casper file=/cdrom/preseed/ubuntu.seed only-ubiquity ignore_uuid oem-config/enable=true quiet splash ---
initrd /casper/initrd
}
grub_platform
if [ "$grub_platform" = "efi" ]; then
menuentry 'Boot from the next volume' {
exit
}
menuentry 'UEFI Firmware Configuration' {
fwsetup
}
fi