summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-01-07 12:32:42 -0500
committerTom Rini <trini@konsulko.com>2023-01-07 12:32:42 -0500
commitbe914b00df4aeb6c115b412313f31daedab75fb5 (patch)
treeb300b0210942482ba87e61b14e20ea8199fcaed6 /arch/arm
parent9ddcdcc03cc6f0f46895604c589af17fdbdfe8b7 (diff)
parent4bba71ff83e2b2a1607c5b3b9995767691242b29 (diff)
Merge tag 'efi-2023-01-rc5-4' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2023-01-rc5-4 UEFI: * correct the vexpress loaddr which collides with memory used by EFI * consider the EFI memory map for LMB memory reservation * avoid RWX section warnings for .data section of *_efi.so files
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/lib/elf_aarch64_efi.lds8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/lib/elf_aarch64_efi.lds b/arch/arm/lib/elf_aarch64_efi.lds
index ffc6f6e6045..3e3da47d6a9 100644
--- a/arch/arm/lib/elf_aarch64_efi.lds
+++ b/arch/arm/lib/elf_aarch64_efi.lds
@@ -7,6 +7,12 @@
OUTPUT_FORMAT("elf64-littleaarch64", "elf64-littleaarch64", "elf64-littleaarch64")
OUTPUT_ARCH(aarch64)
+
+PHDRS
+{
+ data PT_LOAD FLAGS(3); /* SHF_WRITE | SHF_ALLOC */
+}
+
ENTRY(_start)
SECTIONS
{
@@ -49,7 +55,7 @@ SECTIONS
. = ALIGN(512);
_bss_end = .;
_edata = .;
- }
+ } :data
_data_size = _edata - _data;
.rela.dyn : { *(.rela.dyn) }
.rela.plt : { *(.rela.plt) }