summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@kernel.crashing.org>2022-07-26 18:11:44 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-23 15:22:52 +0100
commitcb87867c476579ebea7849c5cc02d3dae8a139d0 (patch)
treef113749e09557dc7780b0ed66754b2a3db2fd9d1 /scripts
parent0ff2b0bbf84a06e7a700b3b7ee49fcd01cc4de2f (diff)
downloadpoky-cb87867c476579ebea7849c5cc02d3dae8a139d0.tar.gz
runqemu: Add missing space on default display option
(From OE-Core rev: fcb55a198eddf4110fd4baf67614a7598441d952) 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> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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):
1375 elif "-display sdl" in output: 1375 elif "-display sdl" in output:
1376 self.sdl = True 1376 self.sdl = True
1377 else: 1377 else:
1378 self.qemu_opt += '-display none' 1378 self.qemu_opt += ' -display none'
1379 1379
1380 if self.sdl == True or self.gtk == True or self.egl_headless == True: 1380 if self.sdl == True or self.gtk == True or self.egl_headless == True:
1381 1381