From ec4a67eaad11b4d4b1f1c8853eba81541abb578b Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 28 Jul 2026 14:01:32 -0700 Subject: [PATCH] boot-qemu.py: Add '-nographic' to ppc32_mac machine This is needed to configure the NVRAM in QEMU to redirect the console to the serial port, which avoids a long hang on boot. Link: https://lore.kernel.org/c6bf0bc3-353b-4d61-a6bc-d84e10f7d811@ilande.co.uk/ Signed-off-by: Nathan Chancellor --- boot-qemu.py | 1 + 1 file changed, 1 insertion(+) diff --git a/boot-qemu.py b/boot-qemu.py index a82771b..229dc06 100755 --- a/boot-qemu.py +++ b/boot-qemu.py @@ -592,6 +592,7 @@ def __init__(self) -> None: self._default_kernel_path = Path('vmlinux') self._machine: str = 'mac99' + self._qemu_args.append('-nographic') class PowerPC64QEMURunner(QEMURunner):