From bcb68eb632aad4716a45ff8e35a6a1e56a2ddc46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Fri, 23 Feb 2024 22:33:32 +0100 Subject: [PATCH] Meta: Set the RAM size to 1G for aarch64 in run.py The "raspi3b" QEMU machine doesn't like RAM sizes other than 1G. --- Meta/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/run.py b/Meta/run.py index 26357f0623..f2fec0d2ca 100755 --- a/Meta/run.py +++ b/Meta/run.py @@ -707,6 +707,7 @@ def set_up_machine_devices(config: Configuration): if config.architecture == Arch.Aarch64: config.qemu_machine = "raspi3b" config.cpu_count = None + config.ram_size = "1G" # The raspi3b machine only accepts 1G as a valid RAM size. config.vga_type = None config.display_device = None if config.machine_type != MachineType.CI: