diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-02-19 20:47:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-21 09:39:00 +0000 |
commit | fca233e5d424a05dcd19f5385d06d8f62e3e5a17 (patch) | |
tree | 254c5bd05977f2acad6eb8e5f6b1645f9d431de1 /meta/conf/machine | |
parent | 2493f505e5820d8307dacd1c47d585d1e307ef34 (diff) | |
download | poky-fca233e5d424a05dcd19f5385d06d8f62e3e5a17.tar.gz |
qemumips: use std vga instead of cirrus vga
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>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r-- | meta/conf/machine/include/qemuboot-mips.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/qemuboot-mips.inc b/meta/conf/machine/include/qemuboot-mips.inc index d44b96c18c..f1f7c2ae20 100644 --- a/meta/conf/machine/include/qemuboot-mips.inc +++ b/meta/conf/machine/include/qemuboot-mips.inc | |||
@@ -7,4 +7,4 @@ QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet" | |||
7 | QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0" | 7 | QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0" |
8 | 8 | ||
9 | # For graphics to work we need to define the VGA device as well as the necessary USB devices | 9 | # For graphics to work we need to define the VGA device as well as the necessary USB devices |
10 | QB_OPT_APPEND += "-device cirrus-vga" | 10 | QB_OPT_APPEND += "-vga std" |