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

Method __init__

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

Source from the content-addressed store, hash-verified

538
539class M68KQEMURunner(QEMURunner):
540 def __init__(self) -> None:
541 super().__init__()
542
543 self.cmdline.append('console=ttyS0,115200')
544 self._default_kernel_path = Path('vmlinux')
545 self._initrd_arch = self._qemu_arch = 'm68k'
546 self._qemu_args += [
547 '-audio', 'none',
548 '-cpu', 'm68040',
549 '-M', 'q800',
550 '-no-reboot',
551 ] # fmt: off
552 self.memory = '512m'
553
554
555class MIPSQEMURunner(QEMURunner):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected