mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
Meta: Set the RAM size to 1G for aarch64 in run.py
The "raspi3b" QEMU machine doesn't like RAM sizes other than 1G.
This commit is contained in:
parent
d2cfea5acc
commit
bcb68eb632
Notes:
sideshowbarker
2024-07-17 01:06:10 +09:00
Author: https://github.com/spholz Commit: https://github.com/SerenityOS/serenity/commit/bcb68eb632 Pull-request: https://github.com/SerenityOS/serenity/pull/23322
1 changed files with 1 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue