Skip to content

Commit

Permalink
ia32: Remove accidental rela
Browse files Browse the repository at this point in the history
REL not RELA

Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
  • Loading branch information
gmbr3 committed Oct 24, 2024
1 parent 8b02917 commit 02954e4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions gnuefi/elf_ia32_efi_local.lds
Original file line number Diff line number Diff line change
Expand Up @@ -90,21 +90,21 @@ SECTIONS

. = ALIGN(4096);
_rodata = .;
.rela :
.rel :
{
*(.rela.text*)
*(.rela.data*)
*(.rela.got)
*(.rela.dyn)
*(.rela.stab)
*(.rela.init_array*)
*(.rela.fini_array*)
*(.rela.ctors*)
*(.rela.dtors*)
*(.rel.text*)
*(.rel.data*)
*(.rel.got)
*(.rel.dyn)
*(.rel.stab)
*(.rel.init_array*)
*(.rel.fini_array*)
*(.rel.ctors*)
*(.rel.dtors*)

}
. = ALIGN(4096);
.rela.plt : { *(.rela.plt) }
.rel.plt : { *(.rel.plt) }
. = ALIGN(4096);
.rodata : {
*(.rodata*)
Expand Down

0 comments on commit 02954e4

Please sign in to comment.