mirror of
https://git.yoctoproject.org/meta-zephyr
synced 2026-09-24 16:36:21 +02:00
Add support to run qemus using runqemu. All qemu machines will inherit the bbclass "zephyr-qemuboot", which is responsible to set up everything that is needed in order to use "runqemu". Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
16 lines
431 B
Plaintext
16 lines
431 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: qemu-x86
|
|
#@DESCRIPTION: Machine for Zephyr BOARD qemu_x86
|
|
|
|
require conf/machine/include/qemu.inc
|
|
require conf/machine/include/tune-i586.inc
|
|
|
|
ZEPHYR_INHERIT_CLASSES += "zephyr-qemuboot"
|
|
|
|
# For runqemu
|
|
QB_SYSTEM_NAME = "qemu-system-i386"
|
|
QB_MACHINE = "-machine pc-0.14"
|
|
QB_OPT_APPEND = "-nographic -display none -clock dynticks -no-acpi -balloon none"
|
|
QB_CPU_x86 = "-cpu qemu32"
|
|
QB_CPU_KVM_x86 = "-cpu kvm32"
|