mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +02:00
qemuboot-x86.inc: allow overwrite of QB_CPU
To test nested kvm with qemu QB_CPU* needs to be modified. E.g. set to "-cpu Haswell-noTSX-IBRS,vmx=on" This allows to overwrite this from local.conf etc. (From OE-Core rev: aa9d145d90893b04cde197e9b5f4dc574e4738e1) Signed-off-by: Thomas Roos <throos@amazon.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
676afe15f6
commit
8cbc584641
@@ -1,11 +1,11 @@
|
||||
# For runqemu
|
||||
IMAGE_CLASSES += "qemuboot"
|
||||
QB_SMP ?= "-smp 4"
|
||||
QB_CPU:x86 = "-cpu IvyBridge -machine q35,i8042=off"
|
||||
QB_CPU_KVM:x86 = "-cpu IvyBridge -machine q35,i8042=off"
|
||||
QB_CPU:x86 ?= "-cpu IvyBridge -machine q35,i8042=off"
|
||||
QB_CPU_KVM:x86 ?= "-cpu IvyBridge -machine q35,i8042=off"
|
||||
|
||||
QB_CPU:x86-64 = "-cpu IvyBridge -machine q35,i8042=off"
|
||||
QB_CPU_KVM:x86-64 = "-cpu IvyBridge -machine q35,i8042=off"
|
||||
QB_CPU:x86-64 ?= "-cpu IvyBridge -machine q35,i8042=off"
|
||||
QB_CPU_KVM:x86-64 ?= "-cpu IvyBridge -machine q35,i8042=off"
|
||||
|
||||
QB_AUDIO_DRV = "alsa"
|
||||
QB_AUDIO_OPT = "-device AC97"
|
||||
|
||||
Reference in New Issue
Block a user