From e83ba2ee3262582a32f0dcb65bd43d85eab8d1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 13 Oct 2005 13:43:13 +0000 Subject: [PATCH] Enlarged the boot loader's heap area to 64kB needed for the tarfs. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14368 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/bios_ia32/start.c | 2 +- src/system/boot/platform/openfirmware/start.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/system/boot/platform/bios_ia32/start.c b/src/system/boot/platform/bios_ia32/start.c index fd5f67ffb7..18a4b0783b 100644 --- a/src/system/boot/platform/bios_ia32/start.c +++ b/src/system/boot/platform/bios_ia32/start.c @@ -21,7 +21,7 @@ #include -#define HEAP_SIZE 32768 +#define HEAP_SIZE 65536 // GCC defined globals extern void (*__ctor_list)(void); diff --git a/src/system/boot/platform/openfirmware/start.c b/src/system/boot/platform/openfirmware/start.c index 04f7dc5621..6334e5e41b 100644 --- a/src/system/boot/platform/openfirmware/start.c +++ b/src/system/boot/platform/openfirmware/start.c @@ -1,7 +1,7 @@ /* -** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the Haiku License. -*/ + * Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Distributed under the terms of the MIT License. + */ #include @@ -17,7 +17,7 @@ #include "machine.h" -#define HEAP_SIZE 32768 +#define HEAP_SIZE 65536 void _start(uint32 _unused1, uint32 _unused2, void *openFirmwareEntry);