diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-04-02 22:46:25 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-05 15:29:01 +0100 |
commit | 379ee9803483688839eaa22d1b09aaa8a70d8ffd (patch) | |
tree | c4a669c77525d971cb174240a14aae1ada1469f6 | |
parent | 25e5e7ca5a7ac1e7a72a1a481842cbf7296b89b8 (diff) | |
download | poky-379ee9803483688839eaa22d1b09aaa8a70d8ffd.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.
(From OE-Core rev: 66d11106f9e76d19e397ba3d14c3a22726033567)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/runqemu | 1 |
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): | |||
1314 | if self.gtk == True: | 1314 | if self.gtk == True: |
1315 | raise RunQemuError('Option nographic makes no sense alongside the gtk option.') | 1315 | raise RunQemuError('Option nographic makes no sense alongside the gtk option.') |
1316 | self.qemu_opt += ' -nographic' | 1316 | self.qemu_opt += ' -nographic' |
1317 | return | ||
1318 | 1317 | ||
1319 | if self.novga == True: | 1318 | if self.novga == True: |
1320 | self.qemu_opt += ' -vga none' | 1319 | self.qemu_opt += ' -vga none' |