We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e5ab7 commit 0081e32Copy full SHA for 0081e32
xtask/src/qemu.rs
@@ -368,6 +368,8 @@ pub fn run_qemu(arch: UefiArch, opt: &QemuOpt) -> Result<()> {
368
369
if arch == UefiArch::IA32 || arch == UefiArch::X86_64 {
370
cmd.args(["-debugcon", "file:./integration-test-debugcon.log"]);
371
+ cmd.args(["-chardev", "file,id=fw,path=./ovmf-firmware-debugcon.log"]);
372
+ cmd.args(["-device", "isa-debugcon,chardev=fw,iobase=0x402"]);
373
}
374
375
// Set the boot menu timeout to zero. On aarch64 in particular this speeds
0 commit comments