diff options
-rw-r--r-- | src/arch/x86/init/bootblock.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/init/bootblock.ld b/src/arch/x86/init/bootblock.ld index dae17bd6bd..bde0430059 100644 --- a/src/arch/x86/init/bootblock.ld +++ b/src/arch/x86/init/bootblock.ld @@ -39,7 +39,6 @@ SECTIONS *(.rodata); *(.rodata.*); *(.rom.data.*); - *(.eh_frame); . = ALIGN(16); _erom = .; } @@ -49,6 +48,7 @@ SECTIONS *(.note) *(.comment.*) *(.note.*) + *(.eh_frame); } _bogus = ASSERT((SIZEOF(.bss) + SIZEOF(.data)) == 0 || CONFIG_AMD_AGESA, "Do not use global variables in romstage"); |