mirror of
https://git.yoctoproject.org/meta-zephyr
synced 2026-01-29 21:58:41 +01:00
This commit restructures meta-zephyr into meta-zephyr-core and meta-zephyr-bsp. It moves machine definitions into meta-zephyr-bsp in preparation for adding the autogenerated zephyr machines. Signed-off-by: Eilís Ní Fhlannagáin <elizabeth.flanagan@huawei.com> Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
18 lines
436 B
Plaintext
18 lines
436 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: qemu-x86
|
|
#@DESCRIPTION: Machine for Zephyr BOARD qemu_x86
|
|
|
|
require conf/machine/include/qemu.inc
|
|
require conf/machine/${X86_TUNE_DIR}/tune-i586.inc
|
|
|
|
ZEPHYR_INHERIT_CLASSES += "zephyr-qemuboot"
|
|
|
|
# For runqemu
|
|
QB_SYSTEM_NAME = "qemu-system-i386"
|
|
QB_MACHINE = "-machine type=pc-q35-2.10"
|
|
QB_OPT_APPEND = "-nographic -no-acpi"
|
|
QB_CPU:x86 = "-cpu qemu32,+nx,+pae"
|
|
QB_CPU_KVM:x86 = "-cpu kvm32"
|
|
|
|
ARCH:qemu-x86 = "x86"
|