diff options
author | Tom Rini <trini@konsulko.com> | 2025-03-17 08:00:40 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-03-17 08:00:40 -0600 |
commit | 3e806c41aa1d22a0c40a284a14a3804d2a930f22 (patch) | |
tree | 570baf38939760a67676d26c63226e6ba6eb59d2 /lib | |
parent | e1b6d514d485b70e6d080a57f68be5508547632f (diff) | |
parent | 7f2fe3dda4ea5384eac4afadb8a4fe5d695e2ce1 (diff) |
Merge tag 'efi-2025-04-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-04-rc5
CI:
* https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/25196
UEFI:
* Export _start symbol from crt0_*_efi stubs
* Move .dynamic out of .text in EFI
* scripts/Makefile.lib: Preserve the .dynstr section as well
Documentation:
* net: miiphybb: Convert documentation to rst
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/elf_efi.ldsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efi_loader/elf_efi.ldsi b/lib/efi_loader/elf_efi.ldsi index 190a88fb69e..4fa5ca43872 100644 --- a/lib/efi_loader/elf_efi.ldsi +++ b/lib/efi_loader/elf_efi.ldsi @@ -21,10 +21,10 @@ SECTIONS *(.gnu.linkonce.t.*) *(.srodata) *(.rodata*) - . = ALIGN(16); - *(.dynamic); - . = ALIGN(512); } + . = ALIGN(16); + .dynamic : { *(.dynamic) } + . = ALIGN(512); .rela.dyn : { *(.rela.dyn) } .rela.plt : { *(.rela.plt) } .rela.got : { *(.rela.got) } |