diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-09-08 20:01:10 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-11 18:41:37 +0100 |
commit | 8dfe2412da0a6939a8f2565d5d9a5a2d841c21ca (patch) | |
tree | 750a617c09cbc599ac469a4a73713ad968834a10 /scripts | |
parent | d87987fc1a4e7f31fb5740568e5edb9a8d123992 (diff) | |
download | poky-8dfe2412da0a6939a8f2565d5d9a5a2d841c21ca.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
(From OE-Core rev: 2c6c7f0ff24da7060cea35f8ff89f2cabd96f2fb)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 2 |
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): | |||
1350 | 1350 | ||
1351 | if self.sdl == True or self.gtk == True or self.egl_headless == True: | 1351 | if self.sdl == True or self.gtk == True or self.egl_headless == True: |
1352 | self.set_dri_path() | 1352 | self.set_dri_path() |
1353 | self.qemu_opt += ' -vga virtio -display ' | 1353 | self.qemu_opt += ' -device virtio-vga-gl -display ' |
1354 | if self.egl_headless == True: | 1354 | if self.egl_headless == True: |
1355 | self.qemu_opt += 'egl-headless,' | 1355 | self.qemu_opt += 'egl-headless,' |
1356 | else: | 1356 | else: |