* [PATCH] x86: efi: add IMD data to the EFI binary
@ 2023-11-03 15:58 Michael Olbrich
2023-11-10 13:30 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Michael Olbrich @ 2023-11-03 15:58 UTC (permalink / raw)
To: barebox; +Cc: Michael Olbrich
It it currently missing so the imd command and the bareboximd tool do
not work.
Add the .barebox_imd section to the linker script and copy it to the EFI
binary.
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
arch/x86/Makefile | 2 +-
arch/x86/mach-efi/elf_x86_64_efi.lds.S | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index a0ce8c17f181..019c1adb7781 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -60,7 +60,7 @@ KBUILD_LDFLAGS := --no-undefined
OBJCOPYFLAGS_barebox.efi = \
-j .text -j .sdata -j .data -j .dynamic -j .dynsym -j .rel -j .rela \
- -j .reloc -j .bbenv.* -j .bblogo.* --target=$(TARGET)
+ -j .reloc -j .bbenv.* -j .bblogo.* -j .barebox_imd --target=$(TARGET)
barebox.efi: $(KBUILD_BINARY) FORCE
$(call if_changed,objcopy)
diff --git a/arch/x86/mach-efi/elf_x86_64_efi.lds.S b/arch/x86/mach-efi/elf_x86_64_efi.lds.S
index ab4a9e815c00..52a0d3db2d6c 100644
--- a/arch/x86/mach-efi/elf_x86_64_efi.lds.S
+++ b/arch/x86/mach-efi/elf_x86_64_efi.lds.S
@@ -56,6 +56,8 @@ SECTIONS
}
_edata = .;
+ .barebox_imd : { BAREBOX_IMD }
+
. = ALIGN(4096);
.dynamic : { *(.dynamic) }
. = ALIGN(4096);
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] x86: efi: add IMD data to the EFI binary
2023-11-03 15:58 [PATCH] x86: efi: add IMD data to the EFI binary Michael Olbrich
@ 2023-11-10 13:30 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2023-11-10 13:30 UTC (permalink / raw)
To: Michael Olbrich; +Cc: barebox
On Fri, Nov 03, 2023 at 04:58:31PM +0100, Michael Olbrich wrote:
> It it currently missing so the imd command and the bareboximd tool do
> not work.
>
> Add the .barebox_imd section to the linker script and copy it to the EFI
> binary.
>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> ---
> arch/x86/Makefile | 2 +-
> arch/x86/mach-efi/elf_x86_64_efi.lds.S | 2 ++
> 2 files changed, 3 insertions(+), 1 deletion(-)
Applied, thanks
Sascha
>
> diff --git a/arch/x86/Makefile b/arch/x86/Makefile
> index a0ce8c17f181..019c1adb7781 100644
> --- a/arch/x86/Makefile
> +++ b/arch/x86/Makefile
> @@ -60,7 +60,7 @@ KBUILD_LDFLAGS := --no-undefined
>
> OBJCOPYFLAGS_barebox.efi = \
> -j .text -j .sdata -j .data -j .dynamic -j .dynsym -j .rel -j .rela \
> - -j .reloc -j .bbenv.* -j .bblogo.* --target=$(TARGET)
> + -j .reloc -j .bbenv.* -j .bblogo.* -j .barebox_imd --target=$(TARGET)
>
> barebox.efi: $(KBUILD_BINARY) FORCE
> $(call if_changed,objcopy)
> diff --git a/arch/x86/mach-efi/elf_x86_64_efi.lds.S b/arch/x86/mach-efi/elf_x86_64_efi.lds.S
> index ab4a9e815c00..52a0d3db2d6c 100644
> --- a/arch/x86/mach-efi/elf_x86_64_efi.lds.S
> +++ b/arch/x86/mach-efi/elf_x86_64_efi.lds.S
> @@ -56,6 +56,8 @@ SECTIONS
> }
> _edata = .;
>
> + .barebox_imd : { BAREBOX_IMD }
> +
> . = ALIGN(4096);
> .dynamic : { *(.dynamic) }
> . = ALIGN(4096);
> --
> 2.39.2
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-11-10 13:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-03 15:58 [PATCH] x86: efi: add IMD data to the EFI binary Michael Olbrich
2023-11-10 13:30 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox