mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Some platforms do not use ttyS* for their serial consoles (e.g., qemuarm and qemuarm64). The hardcoding of this can cause issues. Modify runqemu to use the serial consoles defined in SERIAL_CONSOLES instead of hardcoding. (From OE-Core rev: 9dea4cd2f9f46ab3a75562639a22d8f56b4d26af) Signed-off-by: Jon Mason <jon.mason@arm.com> Change-Id: I746d56de5669c955c5e29d3ded70c0a4d3171f17 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
646 B
Plaintext
21 lines
646 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: QEMU ARM9 machine
|
|
#@DESCRIPTION: Machine configuration for running an ARMv5 system on QEMU
|
|
|
|
require conf/machine/include/qemu.inc
|
|
require conf/machine/include/tune-arm926ejs.inc
|
|
|
|
KERNEL_IMAGETYPE = "zImage"
|
|
|
|
SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;ttyAMA1"
|
|
|
|
# For runqemu
|
|
QB_SYSTEM_NAME = "qemu-system-arm"
|
|
QB_MACHINE = "-machine versatilepb"
|
|
QB_KERNEL_CMDLINE_APPEND = "vmalloc=256"
|
|
QB_OPT_APPEND = "-usb -device usb-tablet"
|
|
PREFERRED_VERSION_linux-yocto ??= "5.10%"
|
|
QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}"
|
|
|
|
KMACHINE_qemuarmv5 = "qemuarm"
|