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>
This commit is contained in:
Mark Hatle 2022-07-26 18:11:44 -05:00 committed by Richard Purdie
parent 30ae37b756
commit 76c40f6489

View File

@ -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: