forked from Ubuntu-Remixes/Ubuntu-DWnity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grub.cfg
34 lines (30 loc) · 996 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
32
33
34
# Copyright (c) Ubuntu Unity <info@unityx.org>
# Licensed under the GNU GPLv3.
set timeout=30
loadfont unicode
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
menuentry "Ubuntu DWnity (Ubuntu Remixes Project)" {
set gfxpayload=keep
linux /casper/vmlinuz boot=casper file=/cdrom/preseed/ubuntu.seed maybe-ubiquity ignore_uuid quiet splash ---
initrd /casper/initrd
}
menuentry "Ubuntu DWnity (safe graphics)" {
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