(self)
| 674 | self._qemu_arch = 'i386' |
| 675 | self._qemu_args += ['-M', 'q35'] |
| 676 | |
| 677 | def run(self) -> None: |
| 678 | if self.use_kvm and not self.efi: |
| 679 | # There are a lot of messages along the line of |
| 680 | # "Invalid read at addr 0xFED40000, size 1, region '(null)', reason: rejected" |
| 681 | # with EFI, so do not bother. |
| 682 | self._qemu_args += ['-d', 'unimp,guest_errors'] |
| 683 | |
| 684 | super().run() |
| 685 | |
| 686 |