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 committed Dec 4, 2023
1 parent dfaf355 commit ffc5158
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 ffc5158

Please sign in to comment.