diff options
| -rw-r--r-- | vm/qemu/qemu.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 7fb9113be..e91a6f8c1 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -389,7 +389,7 @@ func (inst *instance) boot() error { args := []string{ "-m", strconv.Itoa(inst.cfg.Mem), "-smp", strconv.Itoa(inst.cfg.CPU), - "-chardev", fmt.Sprintf("socket,id=SOCKSYZ,server,nowait,host=localhost,port=%v", inst.monport), + "-chardev", fmt.Sprintf("socket,id=SOCKSYZ,server=on,nowait,host=localhost,port=%v", inst.monport), "-mon", "chardev=SOCKSYZ,mode=control", "-display", "none", "-serial", "stdio", |
