From adbd7ae7b684bd076ceb1df17fbfaf8d4e3f2ebe Mon Sep 17 00:00:00 2001 From: Callum Farmer Date: Mon, 4 Dec 2023 10:43:59 +0000 Subject: [PATCH] Remove 64k gap on ARM32 While binutils 2.25 incorrectly changed the page size to 64K, the second part of that fix prevents the bug anyways Signed-off-by: Callum Farmer --- gnuefi/elf_arm_efi.lds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnuefi/elf_arm_efi.lds b/gnuefi/elf_arm_efi.lds index ec09eb0..cae55ea 100644 --- a/gnuefi/elf_arm_efi.lds +++ b/gnuefi/elf_arm_efi.lds @@ -27,7 +27,7 @@ SECTIONS } =0 _reloc_vsize = _evreloc - _reloc; _reloc_size = _ereloc - _reloc; - . = ALIGN(65536); + . = ALIGN(4096); _data = .; .dynamic : { *(.dynamic) } . = ALIGN(4096);