mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06: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:
parent
29daa894b6
commit
991c180d74
8 changed files with 34 additions and 34 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue