git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
450ce56
)
x86: efi: Round out the link script for 64-bit EFI
author
Simon Glass
<sjg@chromium.org>
Tue, 4 Jan 2022 10:51:14 +0000
(
03:51
-0700)
committer
Heinrich Schuchardt
<heinrich.schuchardt@canonical.com>
Sat, 15 Jan 2022 09:57:22 +0000
(10:57 +0100)
Make sure the linker lists are in the right place and drop the eh_frame
section, which is not needed.
Signed-off-by: Simon Glass <sjg@chromium.org>
arch/x86/lib/elf_x86_64_efi.lds
patch
|
blob
|
history
diff --git
a/arch/x86/lib/elf_x86_64_efi.lds
b/arch/x86/lib/elf_x86_64_efi.lds
index
b436429
..
7572740
100644
(file)
--- a/
arch/x86/lib/elf_x86_64_efi.lds
+++ b/
arch/x86/lib/elf_x86_64_efi.lds
@@
-63,6
+63,7
@@
SECTIONS
*(.rela.data*)
*(.rela.got)
*(.rela.stab)
+ *(.rela.u_boot_list*)
}
. = ALIGN(4096);
@@
-70,9
+71,11
@@
SECTIONS
. = ALIGN(4096);
.dynstr : { *(.dynstr) }
. = ALIGN(4096);
+
+ /DISCARD/ : { *(.eh_frame) }
+
.ignored.reloc : {
*(.rela.reloc)
- *(.eh_frame)
*(.note.GNU-stack)
}