source: bootcd/boot/grub/grub.cfg @ e16e8f2

Last change on this file since e16e8f2 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 964 bytes
RevLine 
[e16e8f2]1
2if loadfont /boot/grub/font.pf2 ; then
3        set gfxmode=auto
4        insmod efi_gop
5        insmod efi_uga
6        insmod gfxterm
7        terminal_output gfxterm
8fi
9
10set menu_color_normal=white/black
11set menu_color_highlight=black/light-gray
12
13set timeout=5
14menuentry "SYN3" {
15        set gfxpayload=keep
16        linux /boot/bzImage console=tty1 bootimage=livecd.img initrd=/boot/initrd.gz root=/dev/ram0 init=/linuxrc ramdisk_size=128000 text rw cdroot
17        initrd  /boot/initrd.gz
18}
19menuentry "Ubuntu (safe graphics)" {
20        set gfxpayload=keep
21        linux   /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed maybe-ubiquity quiet splash nomodeset ---
22        initrd  /casper/initrd
23}
24menuentry "OEM install (for manufacturers)" {
25        set gfxpayload=keep
26        linux   /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed only-ubiquity quiet splash oem-config/enable=true ---
27        initrd  /casper/initrd
28}
29grub_platform
30if [ "$grub_platform" = "efi" ]; then
31menuentry 'Boot from next volume' {
32        exit
33}
34menuentry 'UEFI Firmware Settings' {
35        fwsetup
36}
37fi
Note: See TracBrowser for help on using the repository browser.