pmb.qemu: set output="tui" to avoid logging the stdout (!1886)

This commit is contained in:
Daniele Debernardi 2020-03-12 19:28:31 +01:00 committed by Oliver Smith
parent 9718320829
commit 5f6b8eaf0e
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -255,7 +255,7 @@ def run(args):
process = None process = None
try: try:
signal.signal(signal.SIGTERM, sigterm_handler) signal.signal(signal.SIGTERM, sigterm_handler)
process = pmb.helpers.run.user(args, qemu, output="interactive", env=env) process = pmb.helpers.run.user(args, qemu, output="tui", env=env)
except KeyboardInterrupt: except KeyboardInterrupt:
# Don't show a trace when pressing ^C # Don't show a trace when pressing ^C
pass pass