From 964ce003912da099d65567d71c1432d29ab34b24 Mon Sep 17 00:00:00 2001 From: PulkoMandy Date: Wed, 30 Dec 2020 22:45:44 +0100 Subject: [PATCH] openfirmware: we need a larger bootloader heap size Currently about 366K are used. Round up to next power of two. Change-Id: Id6713b4f4eebfbced310bbd75a16a5737228ae72 Reviewed-on: https://review.haiku-os.org/c/haiku/+/3577 Reviewed-by: waddlesplash --- src/system/boot/platform/openfirmware/start.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/platform/openfirmware/start.cpp b/src/system/boot/platform/openfirmware/start.cpp index f0f8abd7a1..ac3f5cde60 100644 --- a/src/system/boot/platform/openfirmware/start.cpp +++ b/src/system/boot/platform/openfirmware/start.cpp @@ -23,7 +23,7 @@ #include "real_time_clock.h" -#define HEAP_SIZE 65536 +#define HEAP_SIZE (512 * 1024) // GCC defined globals