MCPcopy Create free account
hub / github.com/ClangBuiltLinux/boot-utils / PowerPC64QEMURunner

Class PowerPC64QEMURunner

boot-qemu.py:597–607  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

595 self._qemu_args.append('-nographic')
596
597
598class PowerPC64QEMURunner(QEMURunner):
599 def __init__(self) -> None:
600 super().__init__()
601
602 self._default_kernel_path = Path('vmlinux')
603 self._initrd_arch = self._qemu_arch = 'ppc64'
604 self._qemu_args += [
605 '-cpu', 'power8',
606 '-machine', 'pseries',
607 '-vga', 'none',
608 ] # fmt: off
609
610

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected