summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
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-07-28 11:07:33 +0100
commit76c40f6489bca6884af1b9c6a391026c0547e019 (patch)
treec0ccde533b9f2f1d4cea34606a9547a1438a5fd6 /scripts/runqemu
parent30ae37b756d207b8016cd8f1ef768fbe41080b6a (diff)
downloadpoky-76c40f6489bca6884af1b9c6a391026c0547e019.tar.gz
runqemu: Add missing space on default display option
(From OE-Core rev: ee9428611fc38bc711b5b3e12cf0d3257b1b5680) 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>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index b4c1ae6d83..b6fc212ebe 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