From 89aee1f18626a9e66c9c5f00be1d0b079e128b2c Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 1 Mar 2016 20:14:59 -0800 Subject: syslinux.ld: align the initial heap to 4K rather than 64K There is absolutely no reason to align to 64K. Correct the note about this being the heap; COM32R modules were Syslinux 4.x specific. Signed-off-by: H. Peter Anvin --- core/i386/syslinux.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/i386/syslinux.ld b/core/i386/syslinux.ld index 94f842fa..36b1a69b 100644 --- a/core/i386/syslinux.ld +++ b/core/i386/syslinux.ld @@ -372,8 +372,8 @@ SECTIONS _end = .; - /* COM32R and kernels are loaded after our own PM code */ - . = ALIGN(65536); + /* The first block of the heap is here */ + . = ALIGN(4096); free_high_memory = .; /* Stuff we don't need... */ -- cgit v1.2.1