From 02954e46156456e425e4e9a1121eb1a58c47061c Mon Sep 17 00:00:00 2001 From: Callum Farmer Date: Thu, 24 Oct 2024 12:13:57 +0100 Subject: [PATCH] ia32: Remove accidental rela REL not RELA Signed-off-by: Callum Farmer --- gnuefi/elf_ia32_efi_local.lds | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gnuefi/elf_ia32_efi_local.lds b/gnuefi/elf_ia32_efi_local.lds index fec3895..f59135f 100644 --- a/gnuefi/elf_ia32_efi_local.lds +++ b/gnuefi/elf_ia32_efi_local.lds @@ -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*)