mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
An old comment which appears to have been checked in by accident as part of an unrelated change: https://git.openembedded.org/openembedded-core/commit/?id=e9ebcc4c19a624f76051c0a25d9ecf6ac4afb257 (From OE-Core rev: 29a9a2edca220bd9562e7ab5ae7df1d0b58f4d07) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
858 B
Plaintext
23 lines
858 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 = "console=ttyAMA0,115200 console=tty"
|
|
QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet"
|
|
# Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy
|
|
QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0"
|
|
PREFERRED_VERSION_linux-yocto ??= "5.4%"
|
|
QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}"
|
|
|
|
KMACHINE_qemuarmv5 = "qemuarm"
|