diff mbox series

arm/qemuarm64-secureboot: fix qemu parameter

Message ID 20240620125541.70574-1-jon.mason@arm.com
State New
Headers show
Series arm/qemuarm64-secureboot: fix qemu parameter | expand

Commit Message

Jon Mason June 20, 2024, 12:55 p.m. UTC
QEMU has deprecated the no-acpi parameter, in favor of "acpi=off" machine
setting.  Modify the machine conf to use the new method.

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 meta-arm/conf/machine/qemuarm64-secureboot.conf | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Jon Mason June 21, 2024, 12:57 p.m. UTC | #1
On Thu, 20 Jun 2024 08:55:41 -0400, Jon Mason wrote:
> QEMU has deprecated the no-acpi parameter, in favor of "acpi=off" machine
> setting.  Modify the machine conf to use the new method.
> 
> 

Applied, thanks!

[1/1] arm/qemuarm64-secureboot: fix qemu parameter
      commit: 8024166d6cbbff996c1ab6f1b30f28a01ae5fe8f

Best regards,
diff mbox series

Patch

diff --git a/meta-arm/conf/machine/qemuarm64-secureboot.conf b/meta-arm/conf/machine/qemuarm64-secureboot.conf
index 55c4cab457f3..78a39c03c1bd 100644
--- a/meta-arm/conf/machine/qemuarm64-secureboot.conf
+++ b/meta-arm/conf/machine/qemuarm64-secureboot.conf
@@ -7,8 +7,7 @@  KMACHINE = "qemuarm64"
 # secure=on can't ever use KVM, so force it off
 QEMU_USE_KVM = ""
 
-QB_MACHINE = "-machine virt,secure=on"
-QB_OPT_APPEND += "-no-acpi"
+QB_MACHINE = "-machine virt,secure=on,acpi=off"
 QB_MEM = "-m 1024"
 QB_DEFAULT_FSTYPE = "wic.qcow2"
 QB_DEFAULT_BIOS = "flash.bin"