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

Class PowerPC64LEQEMURunner

boot-qemu.py:610–622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

608 ] # fmt: off
609
610
611class PowerPC64LEQEMURunner(QEMURunner):
612 def __init__(self) -> None:
613 super().__init__()
614
615 self.memory = '2G'
616 self._default_kernel_path = Path('arch/powerpc/boot/zImage.epapr')
617 self._initrd_arch = 'ppc64le'
618 self._qemu_arch = 'ppc64'
619 self._qemu_args += [
620 '-device', 'ipmi-bmc-sim,id=bmc0',
621 '-device', 'isa-ipmi-bt,bmc=bmc0,irq=10',
622 '-machine', 'powernv',
623 ] # fmt: off
624
625

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected