From 66d11106f9e76d19e397ba3d14c3a22726033567 Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Fri, 2 Apr 2021 22:46:25 +0200 Subject: 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 Signed-off-by: Richard Purdie --- scripts/runqemu | 1 - 1 file changed, 1 deletion(-) 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' -- cgit 1.2.3-korg