summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorVasyl Vavrychuk <vvavrychuk@gmail.com>2020-08-17 16:57:28 +0300
committerSteve Sakoman <steve@sakoman.com>2020-08-19 04:11:14 -1000
commitbec0a45393d968251059f5075add2cf633aecd1a (patch)
tree0653da9488ae635a0b9f003ea39cfa3e3de830cc /scripts
parentda9571716c40fd8129e8c8f24f07302458b43e31 (diff)
downloadopenembedded-core-contrib-bec0a45393d968251059f5075add2cf633aecd1a.tar.gz
runqemu: Check gtk or sdl option is passed together with gl or gl-es options.
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> (cherry picked from commit 4d1e93d4bf013bb0c48032bfda43f77c5aba9ecf) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 310d79fdc5..398f0a0910 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -454,7 +454,8 @@ class BaseConfig(object):
self.qemu_opt_script += ' -display gtk'
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.qemu_opt_script += ' -vga virtio -display egl-headless'
# As runqemu can be run within bitbake (when using testimage, for example),