UEFI/boot_fb: constrain Qemu to 1920x1080

Fixes #3808
This commit is contained in:
Norman Feske 2020-07-07 11:57:32 +02:00
parent e163055f6a
commit a0b0892df3

View File

@ -146,6 +146,9 @@ proc run_power_on { } {
exit -3
}
append qemu_args " --bios $uefi_firmware -net none -drive format=raw,file=[run_dir].img "
# limit boot resolution in Qemu to 1920x1080
append qemu_args " -device VGA,vgamem_mb=8 "
} else {
puts "Aborting, cannot execute Qemu without a ISO or disk image"
exit -4