]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: Check gtk or sdl option is passed together with gl or gl-es options.
authorVasyl Vavrychuk <vvavrychuk@gmail.com>
Mon, 17 Aug 2020 13:57:28 +0000 (16:57 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 19 Aug 2020 09:57:26 +0000 (10:57 +0100)
runqemu help reports that gtk or sdl option is needed with gl or gl-es
option. But if user forgot to add gtk or sdl option, then gl or gl-es
options were silently skipped.

Signed-off-by: Vasyl Vavrychuk <vvavrychuk@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu

index c40acc4a86f06aef853286d6517f5e5c58a6c3f9..7fb5f7db57b34c455e9657338d45c127f68b775e 100755 (executable)
@@ -478,7 +478,8 @@ class BaseConfig(object):
                     self.qemu_opt_script += ' -display gtk,show-cursor=on'
             elif arg == 'gl' or arg == 'gl-es':
                 # These args are handled inside sdl or gtk blocks above
-                pass
+                if ('gtk' not in sys.argv) and ('sdl' not in sys.argv):
+                    raise RunQemuError('Option %s also needs gtk or sdl option.' % (arg))
             elif arg == 'egl-headless':
                 self.set_dri_path()
                 self.qemu_opt_script += ' -vga virtio -display egl-headless,show-cursor=on'