Skip to content

Commit

Permalink
Bugfix: Do not enable SERIAL_PORT by default in SBSA (#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeshanl authored Oct 29, 2024
1 parent 7985215 commit af9efa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Platforms/QemuSbsaPkg/Plugins/QemuRunner/QemuRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def Runner(env):
args += " -gdb tcp::" + gdb_port

# write ConOut messages to telnet localhost port
serial_port = env.GetValue("SERIAL_PORT", "50001")
serial_port = env.GetValue("SERIAL_PORT")
if serial_port != None:
args += " -serial tcp:127.0.0.1:" + serial_port + ",server,nowait"
else:
Expand Down

0 comments on commit af9efa3

Please sign in to comment.