grub.cfg 1.11 KB
Newer Older
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 35 36 37 38 39
insmod gfxterm
insmod gfxmenu
insmod png

set theme=/boot/grub/live-theme/theme.txt
set gfxmode=1920x1080x32,1440x900x32,1366x768x32,1024x768x32,800x600x32,auto
set timeout_style=menu
set timeout=30

loadfont $prefix/terminus_18.pf2
loadfont $prefix/terminus_16.pf2

if [ x"${grub_platform}" = xpc ] ; then
    # BIOS
    echo "Booting in BIOS Mode"
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    insmod video_fb
    PLATFORM="Legacy PC Mode"
    terminal_output gfxterm
else
    # EFI
    echo "Booting in UEFI Mode"
    set gfxmode=1920x1080x32,1440x900x32,1366x768x32,1024x768x32,800x600x32,auto
    insmod efi_gop
    insmod efi_uga
    insmod video_bochs
    insmod video_cirrus
    insmod video_fb
    insmod gfxterm
    insmod font
    PLATFORM="UEFI"
    terminal_output gfxterm
fi

# Live boot

40
menuentry "Boot Hamara Sugam Live" {
41 42 43 44
 set gfxpayload=keep
 linux KERNEL_LIVE APPEND_LIVE
 initrd INITRD_LIVE
 }
45 46

menuentry "Boot Hamara Sugam Live (safe mode)" {
47 48 49
 linux KERNEL_LIVE boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal
 initrd INITRD_LIVE
}