From ee9428611fc38bc711b5b3e12cf0d3257b1b5680 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 26 Jul 2022 18:11:44 -0500 Subject: [PATCH] runqemu: Add missing space on default display option Signed-off-by: Mark Hatle Signed-off-by: Mark Hatle Signed-off-by: Luca Ceresoli Signed-off-by: Richard Purdie --- scripts/runqemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runqemu b/scripts/runqemu index b4c1ae6d83f..b6fc212ebe2 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: -- 2.47.3