summaryrefslogtreecommitdiff
path: root/core/mem
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-03-06 18:02:35 -0800
committerH. Peter Anvin <hpa@zytor.com>2010-03-06 18:02:35 -0800
commit8c9d059b1584310dcbc39f3bc81d4c8401f6e78b (patch)
treee6862e75b59949851286c5407bfcfa69e19195c1 /core/mem
parent67d39f0d29bcd982a2976d9c1649cd891ab5405c (diff)
downloadsyslinux-8c9d059b1584310dcbc39f3bc81d4c8401f6e78b.tar.gz
mem: increase the heap size to 128K
Use 128K for the heap, to allow TFTP buffers to be allocated there. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/mem')
-rw-r--r--core/mem/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mem/init.c b/core/mem/init.c
index 0fb53770..a916a71d 100644
--- a/core/mem/init.c
+++ b/core/mem/init.c
@@ -5,7 +5,7 @@
struct free_arena_header __malloc_head[NHEAP];
-static char main_heap[65536] __aligned(16);
+static char main_heap[128 << 10] __aligned(16);
extern char __lowmem_heap[];
void mem_init(void)