Skip to content

Commit 2752c87

Browse files
committed
boot-qemu.py: Set default m68k memory to 512m
The default switch to 1G ends up causing panics on boot from memory allocation issues, at least with the default mac_defconfig. Given the real Mac machines this is modeled after had less memory than this and QEMU only allows up to 1G, it is likely some code path is not well tested. Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent 6486a61 commit 2752c87

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

boot-qemu.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@ def __init__(self):
528528
'-M', 'q800',
529529
'-no-reboot',
530530
] # fmt: off
531+
self.memory = '512m'
531532

532533

533534
class MIPSQEMURunner(QEMURunner):

0 commit comments

Comments
 (0)