mirror of
https://git.yoctoproject.org/meta-zephyr
synced 2026-09-24 16:36:21 +02:00
Various changes to properly handle QEMU for Cortex M3.
This was solved by creating a new MACHINE qemu-cortex-m3.
Specifying MACHINE=qemu-cortex-m3 will select proper tuning
for the cross-compiler.
Typical usage:
$ MACHINE=qemu-cortex-m3 bitbake zephyr-philosophers
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
12 lines
295 B
Plaintext
12 lines
295 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: lm3s6965evb
|
|
#@DESCRIPTION: lm3s6965evb
|
|
|
|
require conf/machine/include/qemu.inc
|
|
require conf/machine/include/tune-cortexm3.inc
|
|
|
|
# For runqemu (TBD)
|
|
QB_SYSTEM_NAME = "qemu-system-arm"
|
|
QB_MACHINE = "-machine lm3s6965evb"
|
|
QB_OPT_APPEND = "-nographic -vga none -cpu=cortex-m3"
|