[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH v3 13/20] scripts/qemu.py: support adding a console
From: |
Cleber Rosa |
Subject: |
[qemu-s390x] [PATCH v3 13/20] scripts/qemu.py: support adding a console with the default serial device |
Date: |
Wed, 20 Feb 2019 19:57:46 -0500 |
The set_console() utility function traditionally adds a device either
based on the explicitly given device type, or based on the machine type,
a known good type of device.
But, for a number of machine types, it may be impossible or
inconvenient to add the devices my means of "-device" command line
options, and then it may better to just use the "-serial" option and
let QEMU itself, based on the machine type, set the device
accordingly.
To achieve that, the behavior of set_console() now flags the intention
to add a console device on launch(), and if no explicit device type is
given, and there's no definition on CONSOLE_DEV_TYPES, the "-serial"
is going to be added to the QEMU command line, instead of raising
exceptions.
Based on testing with different machine types, the CONSOLE_DEV_TYPES
is now being set to the bare essential entries (one entry to be
honest), for machine types that can not easily give us a working
console with "-serial".
Signed-off-by: Cleber Rosa <address@hidden>
---
scripts/qemu.py | 39 +++++++++++++++++++--------------------
1 file changed, 19 insertions(+), 20 deletions(-)
diff --git a/scripts/qemu.py b/scripts/qemu.py
index ee85309923..bd1d2e2b9a 100644
--- a/scripts/qemu.py
+++ b/scripts/qemu.py
@@ -42,11 +42,6 @@ def kvm_available(target_arch=None):
#: Maps machine types to the preferred console device types
CONSOLE_DEV_TYPES = {
- r'^clipper$': 'isa-serial',
- r'^malta': 'isa-serial',
- r'^(pc.*|q35.*|isapc)$': 'isa-serial',
- r'^(40p|powernv|prep)$': 'isa-serial',
- r'^pseries.*': 'spapr-vty',
r'^s390-ccw-virtio.*': 'sclpconsole',
}
@@ -129,6 +124,7 @@ class QEMUMachine(object):
self._temp_dir = None
self._launched = False
self._machine = None
+ self._console_set = False
self._console_device_type = None
self._console_address = None
self._console_socket = None
@@ -248,13 +244,17 @@ class QEMUMachine(object):
'-display', 'none', '-vga', 'none']
if self._machine is not None:
args.extend(['-machine', self._machine])
- if self._console_device_type is not None:
+ if self._console_set:
self._console_address = os.path.join(self._temp_dir,
self._name + "-console.sock")
chardev = ('socket,id=console,path=%s,server,nowait' %
self._console_address)
- device = '%s,chardev=console' % self._console_device_type
- args.extend(['-chardev', chardev, '-device', device])
+ args.extend(['-chardev', chardev])
+ if self._console_device_type is None:
+ args.extend(['-serial', 'chardev:console'])
+ else:
+ device = '%s,chardev=console' % self._console_device_type
+ args.extend(['-device', device])
return args
def _pre_launch(self):
@@ -480,30 +480,29 @@ class QEMUMachine(object):
line.
This is a convenience method that will either use the provided
- device type, of if not given, it will used the device type set
- on CONSOLE_DEV_TYPES.
+ device type, of if not given, it will use the device type set
+ on CONSOLE_DEV_TYPES if a machine type is set, and a matching
+ entry exists on CONSOLE_DEV_TYPES.
The actual setting of command line arguments will be be done at
machine launch time, as it depends on the temporary directory
to be created.
- @param device_type: the device type, such as "isa-serial"
+ @param device_type: the device type, such as "isa-serial". If
+ None is given (the default value) a "-serial
+ chardev:console" command line argument will
+ be used instead, resorting to the machine's
+ default device type, if a machine type is set,
+ and a matching entry exists on CONSOLE_DEV_TYPES.
@raises: QEMUMachineAddDeviceError if the device type is not given
and can not be determined.
"""
- if device_type is None:
- if self._machine is None:
- raise QEMUMachineAddDeviceError("Can not add a console device:"
- " QEMU instance without a "
- "defined machine type")
+ self._console_set = True
+ if device_type is None and self._machine is not None:
for regex, device in CONSOLE_DEV_TYPES.items():
if re.match(regex, self._machine):
device_type = device
break
- if device_type is None:
- raise QEMUMachineAddDeviceError("Can not add a console device:"
- " no matching console device "
- "type definition")
self._console_device_type = device_type
@property
--
2.20.1
- [qemu-s390x] [PATCH v3 07/20] Acceptance tests: look for target architecture in test tags first, (continued)
- [qemu-s390x] [PATCH v3 07/20] Acceptance tests: look for target architecture in test tags first, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 06/20] Acceptance tests: use "arch:" tag to filter target specific tests, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 08/20] Boot Linux Console Test: rename the x86_64 after the arch and machine, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 15/20] Boot Linux Console Test: add a test for mips64el + malta, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 14/20] Boot Linux Console Test: add a test for mips + malta, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 11/20] Boot Linux Console Test: increase timeout, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 17/20] Boot Linux Console Test: add a test for aarch64 + virt, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 12/20] Boot Linux Console Test: refactor the console watcher into utility method, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 13/20] scripts/qemu.py: support adding a console with the default serial device,
Cleber Rosa <=
- [qemu-s390x] [PATCH v3 16/20] Boot Linux Console Test: add a test for ppc64 + pseries, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 18/20] Boot Linux Console Test: add a test for arm + virt, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 19/20] Boot Linux Console Test: add a test for s390x + s390-ccw-virtio, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 10/20] Boot Linux Console Test: add common kernel command line options, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 20/20] Boot Linux Console Test: add a test for alpha + clipper, Cleber Rosa, 2019/02/20
- [qemu-s390x] [PATCH v3 09/20] Boot Linux Console Test: update the x86_64 kernel, Cleber Rosa, 2019/02/20