(self)
| 400 | |
| 401 | class ARMV7QEMURunner(ARMQEMURunner, ARMEFIQEMURunner): |
| 402 | def __init__(self) -> None: |
| 403 | super().__init__() |
| 404 | |
| 405 | self.supports_efi = True |
| 406 | self.use_kvm = self._can_use_kvm() |
| 407 | |
| 408 | self.cmdline += ['console=ttyAMA0', 'earlycon'] |
| 409 | |
| 410 | def _can_use_kvm(self) -> bool: |
| 411 | # 32-bit ARM KVM was ripped out in 5.7, so we do not bother checking |
nothing calls this directly
no test coverage detected