summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@kernel.crashing.org>2022-07-26 18:11:44 -0500
committerSteve Sakoman <steve@sakoman.com>2022-08-17 04:55:49 -1000
commitfcb55a198eddf4110fd4baf67614a7598441d952 (patch)
treea34ad6434f01cbdac87e16bb0ab2c7ec16d2b2e5 /scripts
parent72bfdca08029c031cedc9dbbf366663632c1c8db (diff)
downloadopenembedded-core-contrib-fcb55a198eddf4110fd4baf67614a7598441d952.tar.gz
runqemu: Add missing space on default display option
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Mark Hatle <mark.hatle@amd.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ee9428611fc38bc711b5b3e12cf0d3257b1b5680) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 6e1f073ed2..24c4a40b50 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -1375,7 +1375,7 @@ class BaseConfig(object):
elif "-display sdl" in output:
self.sdl = True
else:
- self.qemu_opt += '-display none'
+ self.qemu_opt += ' -display none'
if self.sdl == True or self.gtk == True or self.egl_headless == True: