Skip to content

Commit

Permalink
syslinux.ld: align the initial heap to 4K rather than 64K
Browse files Browse the repository at this point in the history
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 <hpa@zytor.com>
  • Loading branch information
H. Peter Anvin committed Mar 2, 2016
1 parent 874c7c7 commit 89aee1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/i386/syslinux.ld
Expand Up @@ -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... */
Expand Down

0 comments on commit 89aee1f

Please sign in to comment.