From 509f70455479bbdca437eb97f034f52a92679760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 7 May 2024 16:10:05 +0200 Subject: [PATCH] fix(microvm): explicitly disable ACPI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- xtask/src/ci/qemu.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xtask/src/ci/qemu.rs b/xtask/src/ci/qemu.rs index aefc56c0da..a7e1099210 100644 --- a/xtask/src/ci/qemu.rs +++ b/xtask/src/ci/qemu.rs @@ -134,7 +134,8 @@ impl Qemu { let frequency = get_frequency(); vec![ "-M".to_string(), - "microvm,x-option-roms=off,pit=off,pic=off,rtc=on".to_string(), + "microvm,x-option-roms=off,pit=off,pic=off,rtc=on,auto-kernel-cmdline=off,acpi=off" + .to_string(), "-global".to_string(), "virtio-mmio.force-legacy=on".to_string(), "-nodefaults".to_string(),