From c6bebc44627afe5a652d4e305527ca12e90ff768 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 12 May 2010 21:22:14 -0700 Subject: [PATCH] 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 --- core/syslinux.ld | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/syslinux.ld b/core/syslinux.ld index 82170a7..ea10211 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) { -- 2.7.4