summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-05-12 21:22:14 -0700
committerH. Peter Anvin <hpa@zytor.com>2010-05-12 21:22:14 -0700
commitc6bebc44627afe5a652d4e305527ca12e90ff768 (patch)
tree2672ab3c32c6dd14322a269a500ab141f775a161
parentedd10c1dc8a724aa113a0af88cf5c04a8fe2155f (diff)
downloadsyslinux-c6bebc44627afe5a652d4e305527ca12e90ff768.tar.gz
syslinux.ld: don't pad between .got and .data
Adding padding between .got and .data is unnecessary, and can cause spurious decompression failures when .data is empty (which it almost is already...) Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--core/syslinux.ld2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/syslinux.ld b/core/syslinux.ld
index 82170a78..ea102114 100644
--- a/core/syslinux.ld
+++ b/core/syslinux.ld
@@ -317,8 +317,6 @@ SECTIONS
__got_end = .;
}
- . = ALIGN(16);
-
__data_vma = .;
__data_lma = __data_vma + __text_lma - __text_vma;
.data : AT(__data_lma) {