summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-04-02 22:46:25 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-04-05 15:27:24 +0100
commit66d11106f9e76d19e397ba3d14c3a22726033567 (patch)
tree7f3f7cbe98bccff8bc8b448a58f4b298019b668a
parente72dc396f0e147b078160fae0ac43861eb60e76f (diff)
downloadopenembedded-core-contrib-66d11106f9e76d19e397ba3d14c3a22726033567.tar.gz
runqemu: do not stop processing graphical options after nographic
Some options such as egl-headless are fully compatible with it, so there is no need to quit. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/runqemu1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index df4ee21d53..35053de368 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -1314,7 +1314,6 @@ class BaseConfig(object):
if self.gtk == True:
raise RunQemuError('Option nographic makes no sense alongside the gtk option.')
self.qemu_opt += ' -nographic'
- return
if self.novga == True:
self.qemu_opt += ' -vga none'