Skip to content

Commit

Permalink
Remove 64K gap on ARM32
Browse files Browse the repository at this point in the history
While binutils 2.25 incorrectly changed the page size
to 64K, the second part of that fix prevents the bug
anyways

Partial revert of 28d4b62

Signed-off-by: Callum Farmer <[email protected]>
  • Loading branch information
gmbr3 authored and superm1 committed Dec 16, 2023
1 parent d7a2f25 commit 9485b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion efi/lds/elf_arm_efi.lds
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SECTIONS
} =0
_reloc_vsize = _evreloc - _reloc;
_reloc_size = _ereloc - _reloc;
. = ALIGN(65536);
. = ALIGN(4096);
_data = .;
.dynamic : { *(.dynamic) }
. = ALIGN(4096);
Expand Down

0 comments on commit 9485b04

Please sign in to comment.