aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2011-10-13 16:52:27 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2011-10-14 08:12:06 +0200
commit499af708ca6811843d33e8cc23f01fe7ce08c948 (patch)
treecbe5d59db3490e07507145bc5f062fa48351370e
parent513eb5a9568261e5f1fc5b7cb7cbc129cda0f943 (diff)
Add eh_frame to rom section to fix compilation of coreboot with gcc 4.6
Change-Id: I347dd84a61244eed145c02a080309d5a34c5394a Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/263 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
-rw-r--r--src/arch/x86/init/bootblock.ld1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/init/bootblock.ld b/src/arch/x86/init/bootblock.ld
index eab64cf8d8..dae17bd6bd 100644
--- a/src/arch/x86/init/bootblock.ld
+++ b/src/arch/x86/init/bootblock.ld
@@ -39,6 +39,7 @@ SECTIONS
*(.rodata);
*(.rodata.*);
*(.rom.data.*);
+ *(.eh_frame);
. = ALIGN(16);
_erom = .;
}