* [PATCH 1/2] x86: efi: fix efiexit support
@ 2017-03-07 8:44 Jean-Christophe PLAGNIOL-VILLARD
2017-03-07 8:44 ` [PATCH 2/2] x86: efi: fix logo support Jean-Christophe PLAGNIOL-VILLARD
2017-03-09 6:32 ` [PATCH 1/2] x86: efi: fix efiexit support Sascha Hauer
0 siblings, 2 replies; 3+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2017-03-07 8:44 UTC (permalink / raw)
To: barebox
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/x86/mach-efi/elf_x86_64_efi.lds.S | 1 +
1 file changed, 1 insertion(+)
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 e1bc2120f..93d34d17a 100644
--- a/arch/x86/mach-efi/elf_x86_64_efi.lds.S
+++ b/arch/x86/mach-efi/elf_x86_64_efi.lds.S
@@ -80,6 +80,7 @@ SECTIONS
*(.rela.data*)
*(.rela.barebox*)
*(.rela.initcall*)
+ *(.rela.exitcall*)
*(.rela.got)
*(.rela.stab)
}
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 2/2] x86: efi: fix logo support
2017-03-07 8:44 [PATCH 1/2] x86: efi: fix efiexit support Jean-Christophe PLAGNIOL-VILLARD
@ 2017-03-07 8:44 ` Jean-Christophe PLAGNIOL-VILLARD
2017-03-09 6:32 ` [PATCH 1/2] x86: efi: fix efiexit support Sascha Hauer
1 sibling, 0 replies; 3+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2017-03-07 8:44 UTC (permalink / raw)
To: barebox
we need to copy the logo section too
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
arch/x86/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index e837a2df9..6921b10a7 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -85,7 +85,7 @@ quiet_cmd_efi_image = EFI-IMG $@
cmd_efi_image = $(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic \
-j .dynsym -j .rel -j .rela -j .reloc -j __barebox_initcalls \
-j __barebox_cmd -j .barebox_magicvar -j .bbenv.* \
- --target=$(TARGET) $< $@
+ -j .bblogo.* --target=$(TARGET) $< $@
KBUILD_BINARY := barebox
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] x86: efi: fix efiexit support
2017-03-07 8:44 [PATCH 1/2] x86: efi: fix efiexit support Jean-Christophe PLAGNIOL-VILLARD
2017-03-07 8:44 ` [PATCH 2/2] x86: efi: fix logo support Jean-Christophe PLAGNIOL-VILLARD
@ 2017-03-09 6:32 ` Sascha Hauer
1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2017-03-09 6:32 UTC (permalink / raw)
To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox
On Tue, Mar 07, 2017 at 09:44:25AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> arch/x86/mach-efi/elf_x86_64_efi.lds.S | 1 +
> 1 file changed, 1 insertion(+)
Applied, thanks
Sascha
>
> 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 e1bc2120f..93d34d17a 100644
> --- a/arch/x86/mach-efi/elf_x86_64_efi.lds.S
> +++ b/arch/x86/mach-efi/elf_x86_64_efi.lds.S
> @@ -80,6 +80,7 @@ SECTIONS
> *(.rela.data*)
> *(.rela.barebox*)
> *(.rela.initcall*)
> + *(.rela.exitcall*)
> *(.rela.got)
> *(.rela.stab)
> }
> --
> 2.11.0
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-03-09 6:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-07 8:44 [PATCH 1/2] x86: efi: fix efiexit support Jean-Christophe PLAGNIOL-VILLARD
2017-03-07 8:44 ` [PATCH 2/2] x86: efi: fix logo support Jean-Christophe PLAGNIOL-VILLARD
2017-03-09 6:32 ` [PATCH 1/2] x86: efi: fix efiexit support Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox