From 2c6c7f0ff24da7060cea35f8ff89f2cabd96f2fb Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Wed, 8 Sep 2021 20:01:10 +0200 Subject: 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 Signed-off-by: Richard Purdie --- scripts/runqemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit 1.2.3-korg