Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | #@TYPE: Machine |
| 2 | #@NAME: QEMU ARM9 machine |
| 3 | #@DESCRIPTION: Machine configuration for running an ARMv5 system on QEMU |
| 4 | |
| 5 | require conf/machine/include/qemu.inc |
| 6 | require conf/machine/include/tune-arm926ejs.inc |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 7 | |
| 8 | KERNEL_IMAGETYPE = "zImage" |
| 9 | |
| 10 | SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;ttyAMA1" |
| 11 | |
| 12 | # For runqemu |
| 13 | QB_SYSTEM_NAME = "qemu-system-arm" |
| 14 | QB_MACHINE = "-machine versatilepb" |
| 15 | QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0,115200 console=tty" |
| 16 | QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet" |
| 17 | # Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy |
| 18 | QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 19 | PREFERRED_VERSION_linux-yocto ??= "5.4%" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 20 | QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}" |
| 21 | |
| 22 | KMACHINE_qemuarmv5 = "qemuarm" |