From a0b0892df37d8e894da8f5e155e62f482c4196eb Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Tue, 7 Jul 2020 11:57:32 +0200 Subject: [PATCH] UEFI/boot_fb: constrain Qemu to 1920x1080 Fixes #3808 --- tool/run/power_on/qemu | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tool/run/power_on/qemu b/tool/run/power_on/qemu index f664e4f91..178f64160 100644 --- a/tool/run/power_on/qemu +++ b/tool/run/power_on/qemu @@ -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