diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2011-02-11 17:05:01 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2011-02-11 17:05:01 -0500 |
commit | 3348188b6da4fcf2fbc76a564a579ae30df2ba0e (patch) | |
tree | e29f54a16d85f40b57737e74e1df6464ea7558b8 | |
parent | 73b86299158759b7c599b72fe88aadfaa001e18e (diff) | |
download | kvm-manager-3348188b6da4fcf2fbc76a564a579ae30df2ba0e.tar.gz kvm-manager-3348188b6da4fcf2fbc76a564a579ae30df2ba0e.tar.bz2 |
have kvm block waiting for the client to connect to the socket; should enable capturing the first fraction of a second of bootloader output (might cause trouble if/when the console screen dies, though)
-rwxr-xr-x | kvm-manager | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm-manager b/kvm-manager index f38ddc5..8b96f0e 100755 --- a/kvm-manager +++ b/kvm-manager @@ -81,7 +81,7 @@ EOF -rtc base=utc \ -usb \ -device virtio-balloon-pci,id=balloon0,bus=pci.0 \ - -chardev "socket,id=serial0,path=$CONSOLENAME,server,nowait" -device isa-serial,chardev=serial0 \ + -chardev "socket,id=serial0,path=$CONSOLENAME,server" -device isa-serial,chardev=serial0 \ -smp "${SMP:-1},maxcpus=${MAXCPUS:-8}" \ -device "virtio-net-pci,vlan=0,id=net0,mac=$MAC,bus=pci.0" \ -net "tap,ifname=$TAP,script=no,downscript=no,vlan=0,name=hostnet0" & |