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

Method __init__

boot-qemu.py:572–581  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

570
571class PowerPC32QEMURunner(QEMURunner):
572 def __init__(self) -> None:
573 super().__init__()
574
575 self.cmdline.append('console=ttyS0')
576 self.memory = '128m'
577 self._default_kernel_path = Path('arch/powerpc/boot/uImage')
578 self._initrd_arch = 'ppc32'
579 self._machine: str = 'bamboo'
580 self._qemu_arch = 'ppc'
581 self._qemu_args.append('-no-reboot')
582
583 def run(self) -> None:
584 self._qemu_args += ['-machine', self._machine]

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected