mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 13:29:40 +01:00
This is what the upstream recommends nowadays: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ I have verified that both X and weston continue to boot and look right; however xorg.conf file needs to be removed as it is cirrus specific and doesn't work and isn't needed with std vga. (From OE-Core rev: 96e6434239268fd0fc021bda9c8fedd998597097) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
481 B
PHP
11 lines
481 B
PHP
# For runqemu
|
|
IMAGE_CLASSES += "qemuboot"
|
|
QB_MACHINE = "-machine malta"
|
|
QB_KERNEL_CMDLINE_APPEND = "console=ttyS0 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"
|
|
|
|
# For graphics to work we need to define the VGA device as well as the necessary USB devices
|
|
QB_OPT_APPEND += "-vga std"
|