aboutsummaryrefslogtreecommitdiff
path: root/rumba/testbeds/qemu.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-04-21 22:21:40 +0200
committerVincenzo Maffione <v.maffione@gmail.com>2017-04-21 22:21:40 +0200
commit2bc7a6e653cc64ba4ee9dcd528ca5165f063afd8 (patch)
tree56928605248c600a013d644cf02aba25fcf93a0c /rumba/testbeds/qemu.py
parent23e074bd2fdef6cd5d93493d68e45f3361a7625a (diff)
downloadrumba-2bc7a6e653cc64ba4ee9dcd528ca5165f063afd8.tar.gz
rumba-2bc7a6e653cc64ba4ee9dcd528ca5165f063afd8.zip
testbeds: qemu: remove -nographic option
This was causing occasional corruption of terminal stdout. Fixes #1.
Diffstat (limited to 'rumba/testbeds/qemu.py')
-rw-r--r--rumba/testbeds/qemu.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/rumba/testbeds/qemu.py b/rumba/testbeds/qemu.py
index efc73a6..e81c383 100644
--- a/rumba/testbeds/qemu.py
+++ b/rumba/testbeds/qemu.py
@@ -242,14 +242,13 @@ class Testbed(mod.Testbed):
'-append "console=ttyS0" '
'-initrd %(initramfs)s '
% vars_dict)
- command += ('-nographic '
+ command += ('-vga std '
'-display none '
'--enable-kvm '
'-smp 1 '
'-m %(memory)sM '
'-device %(frontend)s,mac=%(mac)s,netdev=mgmt '
'-netdev user,id=mgmt,%(hostfwdstr)s '
- '-vga std '
'-serial file:%(vmname)s.log '
% vars_dict
)