1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-04-20 11:29:54 +00:00

arm/qemuarm64-secureboot: fix qemu parameter

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>
This commit is contained in:
Jon Mason
2024-06-20 08:55:41 -04:00
parent 794262c783
commit 8024166d6c

View File

@@ -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"