Jan Kiszka
unread,Jun 18, 2024, 10:49:54 AM6/18/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to efibootguard-dev, Christian Storm, Christopher Obbard, Quirin Gylstorff
From: Jan Kiszka <
jan.k...@siemens.com>
Adding the .rodata section was forgotten in c66041fc7c66, breaking the
kernel stub when being built against latest gnu-efi.
Signed-off-by: Jan Kiszka <
jan.k...@siemens.com>
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 0bd2dec..2ea47ae 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -310,7 +310,7 @@ $(kernel_stub_solib): $(kernel_stub_objects)
$(kernel_stub_name): $(kernel_stub_solib)
$(AM_V_GEN) $(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic \
- -j .dynsym -j .rel* $(objcopy_format) $< $@
+ -j .dynsym -j .rodata -j .rel* $(objcopy_format) $< $@
endif # BOOTLOADER
--
2.43.0