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

Class M68KQEMURunner

boot-qemu.py:539–552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

537
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

no outgoing calls

Tested by

no test coverage detected