mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 12:29:40 +01:00
Bring across the comment that was in runqemu regarding why the virtio-rng-pci device was needed. This comment is added to each location where the virtio-rng-pci device is added. (From OE-Core rev: bc5d1fdea674e842e4b0c45b38782930ec133051) Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
760 B
Plaintext
21 lines
760 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: arm_versatile_926ejs
|
|
#@DESCRIPTION: arm_versatile_926ejs
|
|
|
|
require conf/machine/include/qemu.inc
|
|
require conf/machine/include/tune-arm926ejs.inc
|
|
#require conf/machine/include/tune-arm1136jf-s.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"
|
|
# Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy
|
|
QB_OPT_APPEND = "-show-cursor -usb -usbdevice tablet -device virtio-rng-pci"
|
|
PREFERRED_VERSION_linux-yocto ??= "4.8%"
|
|
QB_DTB = "${@base_version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}"
|