| 652 | self._qemu_args += ['-M', 's390-ccw-virtio'] |
| 653 | |
| 654 | |
| 655 | class Sparc64QEMURunner(QEMURunner): |
| 656 | def __init__(self) -> None: |
| 657 | super().__init__() |
| 658 | |
| 659 | self.cmdline.append('console=ttyS0') |
| 660 | self._default_kernel_path = Path('arch/sparc/boot/image') |
| 661 | self._initrd_arch = self._qemu_arch = 'sparc64' |
| 662 | self._qemu_args += ['-M', 'sun4u', '-cpu', 'TI UltraSparc IIi'] |
| 663 | |
| 664 |
nothing calls this directly
no outgoing calls
no test coverage detected