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
This commit is contained in:
Axel Dörfler
2005-10-13 13:43:13 +00:00
parent 4cc5dde4a7
commit e83ba2ee32
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
#include <string.h> #include <string.h>
#define HEAP_SIZE 32768 #define HEAP_SIZE 65536
// GCC defined globals // GCC defined globals
extern void (*__ctor_list)(void); extern void (*__ctor_list)(void);
@@ -1,7 +1,7 @@
/* /*
** Copyright 2003-2004, Axel Dörfler, [email protected]. All rights reserved. * Copyright 2003-2005, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the Haiku License. * Distributed under the terms of the MIT License.
*/ */
#include <OS.h> #include <OS.h>
@@ -17,7 +17,7 @@
#include "machine.h" #include "machine.h"
#define HEAP_SIZE 32768 #define HEAP_SIZE 65536
void _start(uint32 _unused1, uint32 _unused2, void *openFirmwareEntry); void _start(uint32 _unused1, uint32 _unused2, void *openFirmwareEntry);