summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-09-08 20:01:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-11 18:31:04 +0100
commit2c6c7f0ff24da7060cea35f8ff89f2cabd96f2fb (patch)
treeebce22cd7909b943ba8a24ee1171ef872dee76e8 /scripts
parentb2710d25e3d8d79a35dbd4332ffc5cc8053d5eb8 (diff)
downloadopenembedded-core-contrib-2c6c7f0ff24da7060cea35f8ff89f2cabd96f2fb.tar.gz
runqemu: correct vga-virtio option to keep virgl enabled
qemu 6.1 has (perhaps unintentionally) disabled virgl in -vga virtio: https://gitlab.com/qemu-project/qemu/-/issues/586 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index c467b0eb19..3268bb18ad 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -1350,7 +1350,7 @@ class BaseConfig(object):
if self.sdl == True or self.gtk == True or self.egl_headless == True:
self.set_dri_path()
- self.qemu_opt += ' -vga virtio -display '
+ self.qemu_opt += ' -device virtio-vga-gl -display '
if self.egl_headless == True:
self.qemu_opt += 'egl-headless,'
else: