]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: do not stop processing graphical options after nographic
authorAlexander Kanavin <alex.kanavin@gmail.com>
Fri, 2 Apr 2021 20:46:25 +0000 (22:46 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 5 Apr 2021 14:27:24 +0000 (15:27 +0100)
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>
scripts/runqemu

index df4ee21d53167990880eadecdad4c5aa1f2f684c..35053de368d6639edc1187b4e4a6d8c8c6c87815 100755 (executable)
@@ -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'