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 |
| 7 | #require conf/machine/include/tune-arm1136jf-s.inc |
| 8 | |
| 9 | KERNEL_IMAGETYPE = "zImage" |
| 10 | |
| 11 | SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;ttyAMA1" |
| 12 | |
| 13 | # For runqemu |
| 14 | QB_SYSTEM_NAME = "qemu-system-arm" |
| 15 | QB_MACHINE = "-machine versatilepb" |
| 16 | QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0,115200 console=tty" |
| 17 | QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet" |
| 18 | # Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy |
| 19 | QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0" |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 20 | PREFERRED_VERSION_linux-yocto ??= "5.2%" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 21 | QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}" |
| 22 | |
| 23 | KMACHINE_qemuarmv5 = "qemuarm" |