mirror of
https://github.com/mii443/qemu.git
synced 2025-09-02 15:19:24 +00:00
treewide: do not use short-form boolean options
They are going to be deprecated, avoid warnings on stdout while the tests run. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@ -292,7 +292,7 @@ class QEMUMachine:
|
||||
for _ in range(self._console_index):
|
||||
args.extend(['-serial', 'null'])
|
||||
if self._console_set:
|
||||
chardev = ('socket,id=console,path=%s,server,nowait' %
|
||||
chardev = ('socket,id=console,path=%s,server=on,wait=off' %
|
||||
self._console_address)
|
||||
args.extend(['-chardev', chardev])
|
||||
if self._console_device_type is None:
|
||||
|
Reference in New Issue
Block a user