| 642 | self._qemu_args += ['-bios', bios, '-M', 'virt'] |
| 643 | |
| 644 | |
| 645 | class S390QEMURunner(QEMURunner): |
| 646 | def __init__(self) -> None: |
| 647 | super().__init__() |
| 648 | |
| 649 | self._default_kernel_path = Path('arch/s390/boot/bzImage') |
| 650 | self._initrd_arch = 's390' |
| 651 | self._qemu_arch = 's390x' |
| 652 | self._qemu_args += ['-M', 's390-ccw-virtio'] |
| 653 | |
| 654 |
nothing calls this directly
no outgoing calls
no test coverage detected