nixos/grub: Fix video display on efi

This commit is contained in:
William A. Kennington III 2015-05-29 12:09:08 -07:00
parent d4f3930201
commit 159fed47bc

View File

@ -254,10 +254,15 @@ else {
set timeout=$timeout
fi
# Setup the graphics stack for bios and efi systems
insmod vbe
insmod efi_gop
insmod efi_uga
insmod font
if loadfont " . $grubBoot->path . "/grub/fonts/unicode.pf2; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
set gfxmode=auto
set gfxpayload=keep
terminal_output gfxterm
fi
";