summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-03-03 12:27:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-04 14:13:27 +0000
commit36fd0a334cd6ed309cf96e445af83447070412a3 (patch)
tree4d95308cf24d166c3d4b6c4ba1126da713f2439e /scripts
parent34ee1d8b11ecc9bb7acaf9d61b8b7c954306f1ae (diff)
downloadopenembedded-core-contrib-36fd0a334cd6ed309cf96e445af83447070412a3.tar.gz
runqemu: make gl options gtk+-specific
If in the future GL is enabled for SDL frontend, or some other frontend, it would be useful to be able to differentiate. 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/runqemu8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index bbf539a8e6..c0e569c44c 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -75,8 +75,8 @@ of the following environment variables (in any order):
Simplified QEMU command-line options can be passed with:
nographic - disable video console
sdl - choose the SDL frontend instead of the Gtk+ default
- gl - enable virgl-based GL acceleration
- gl-es - enable virgl-based GL acceleration, using OpenGL ES
+ gtk-gl - enable virgl-based GL acceleration using Gtk+ frontend
+ gtk-gl-es - enable virgl-based GL acceleration, using OpenGL ES and Gtk+ frontend
egl-headless - enable headless EGL output; use vnc or spice to see it
serial - enable a serial console on /dev/ttyS0
serialstdio - enable a serial console on the console (regardless of graphics mode)
@@ -407,9 +407,9 @@ class BaseConfig(object):
self.kernel_cmdline_script += ' console=ttyS0'
elif arg == 'sdl':
self.qemu_opt_script += ' -display sdl'
- elif arg == 'gl':
+ elif arg == 'gtk-gl':
self.qemu_opt_script += ' -vga virtio -display gtk,gl=on'
- elif arg == 'gl-es':
+ elif arg == 'gtk-gl-es':
self.qemu_opt_script += ' -vga virtio -display gtk,gl=es'
elif arg == 'egl-headless':
self.qemu_opt_script += ' -vga virtio -display egl-headless'