summaryrefslogtreecommitdiff
path: root/core/syslinux.ld
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-24 20:54:26 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-24 20:54:26 -0700
commit26c069b284f1f9cd144e2c4e8b0fa8ee4b25bc83 (patch)
tree11bcd74fd242f0da5391e629320bc6c7322b565f /core/syslinux.ld
parent29723e4efadabc9201cd66cdbb0591337c76f5f4 (diff)
downloadsyslinux-26c069b284f1f9cd144e2c4e8b0fa8ee4b25bc83.tar.gz
Align free_high_memory to a 64K boundary
There might be some minor performance gains from aligning free_high_memory to a 64K boundary... so we might as well do so. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/syslinux.ld')
-rw-r--r--core/syslinux.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/syslinux.ld b/core/syslinux.ld
index 97294e85..7a7f01ef 100644
--- a/core/syslinux.ld
+++ b/core/syslinux.ld
@@ -257,6 +257,6 @@ SECTIONS
_end = .;
/* COM32R and kernels are loaded after our own PM code */
- . = ALIGN(4096);
+ . = ALIGN(65536);
free_high_memory = .;
}