aboutsummaryrefslogtreecommitdiff
path: root/misc/grub.cfg
blob: 1ab43d515bf68d74ee816b55f70dbdc175b692d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set timeout=1
set default=0
set fallback=1

if [ "$grub_platform" = "efi" ]; then
    set debug=video
    insmod efi_gop
    insmod efi_uga
    insmod font
    if loadfont ${prefix}/unicode.pf2; then
	insmod gfxterm
	set gfxmode=auto
	set gfxpayload=keep
	terminal_output gfxterm
    fi
fi

menuentry "rasde/Linux" {
	linux /vmlinuz-7.0.14 root=/dev/vda2 init=/bin/bash rw
}