summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
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 1143509975..d4f0888f8d 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -1376,7 +1376,7 @@ class BaseConfig(object):
1376 1376
1377 def setup_serial(self): 1377 def setup_serial(self):
1378 # Setup correct kernel command line for serial 1378 # Setup correct kernel command line for serial
1379 if self.serialstdio == True or self.serialconsole == True or self.nographic == True or self.tcpserial_portnum: 1379 if self.get('SERIAL_CONSOLES') and (self.serialstdio == True or self.serialconsole == True or self.nographic == True or self.tcpserial_portnum):
1380 for entry in self.get('SERIAL_CONSOLES').split(' '): 1380 for entry in self.get('SERIAL_CONSOLES').split(' '):
1381 self.kernel_cmdline_script += ' console=%s' %entry.split(';')[1] 1381 self.kernel_cmdline_script += ' console=%s' %entry.split(';')[1]
1382 1382