mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] platforms/u-boot.in: Add U-boot efi target images to copy to image dir.
@ 2021-05-26 10:27 Christian Melki
  2021-05-28  7:01 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2021-05-26 10:27 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 platforms/u-boot.in | 12 ++++++++++++
 rules/u-boot.make   |  6 ++++++
 2 files changed, 18 insertions(+)

diff --git a/platforms/u-boot.in b/platforms/u-boot.in
index 491faed60..4ddf3b3fb 100644
--- a/platforms/u-boot.in
+++ b/platforms/u-boot.in
@@ -171,6 +171,18 @@ config U_BOOT_INSTALL_ELF
 	help
 	  Installing the U-Boot ELF binary into platform image directory.
 
+config U_BOOT_INSTALL_EFI_APPLICATION
+	prompt "install u-boot-app.efi"
+	bool
+	help
+	  Installing the U-Boot EFI application into platform image directory.
+
+config U_BOOT_INSTALL_EFI_PAYLOAD
+	prompt "install u-boot-payload.efi"
+	bool
+	help
+	  Installing the U-Boot EFI payload into platform image directory.
+
 config U_BOOT_INSTALL_SPL
 	prompt "install SPL"
 	bool
diff --git a/rules/u-boot.make b/rules/u-boot.make
index 06468654d..38c32bf27 100644
--- a/rules/u-boot.make
+++ b/rules/u-boot.make
@@ -145,6 +145,12 @@ endif
 ifdef PTXCONF_U_BOOT_INSTALL_ELF
 	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/u-boot $(IMAGEDIR)/u-boot.elf
 endif
+ifdef PTXCONF_U_BOOT_INSTALL_EFI_APPLICATION
+	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/u-boot-app.efi $(IMAGEDIR)/u-boot-app.efi
+endif
+ifdef PTXCONF_U_BOOT_INSTALL_EFI_PAYLOAD
+	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/u-boot-payload.efi $(IMAGEDIR)/u-boot-payload.efi
+endif
 ifdef PTXCONF_U_BOOT_INSTALL_SPL
 	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/SPL $(IMAGEDIR)/SPL
 endif
-- 
2.31.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [APPLIED] platforms/u-boot.in: Add U-boot efi target images to copy to image dir.
  2021-05-26 10:27 [ptxdist] [PATCH] platforms/u-boot.in: Add U-boot efi target images to copy to image dir Christian Melki
@ 2021-05-28  7:01 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2021-05-28  7:01 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as a29533b3fd22bc5bbbdbdf1c8c79f7609e3f2703.

Michael

[sent from post-receive hook]

On Fri, 28 May 2021 09:01:24 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20210526102756.22358-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/platforms/u-boot.in b/platforms/u-boot.in
> index 491faed60566..4ddf3b3fb02d 100644
> --- a/platforms/u-boot.in
> +++ b/platforms/u-boot.in
> @@ -171,6 +171,18 @@ config U_BOOT_INSTALL_ELF
>  	help
>  	  Installing the U-Boot ELF binary into platform image directory.
>  
> +config U_BOOT_INSTALL_EFI_APPLICATION
> +	prompt "install u-boot-app.efi"
> +	bool
> +	help
> +	  Installing the U-Boot EFI application into platform image directory.
> +
> +config U_BOOT_INSTALL_EFI_PAYLOAD
> +	prompt "install u-boot-payload.efi"
> +	bool
> +	help
> +	  Installing the U-Boot EFI payload into platform image directory.
> +
>  config U_BOOT_INSTALL_SPL
>  	prompt "install SPL"
>  	bool
> diff --git a/rules/u-boot.make b/rules/u-boot.make
> index 06468654d23a..38c32bf2701f 100644
> --- a/rules/u-boot.make
> +++ b/rules/u-boot.make
> @@ -145,6 +145,12 @@ endif
>  ifdef PTXCONF_U_BOOT_INSTALL_ELF
>  	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/u-boot $(IMAGEDIR)/u-boot.elf
>  endif
> +ifdef PTXCONF_U_BOOT_INSTALL_EFI_APPLICATION
> +	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/u-boot-app.efi $(IMAGEDIR)/u-boot-app.efi
> +endif
> +ifdef PTXCONF_U_BOOT_INSTALL_EFI_PAYLOAD
> +	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/u-boot-payload.efi $(IMAGEDIR)/u-boot-payload.efi
> +endif
>  ifdef PTXCONF_U_BOOT_INSTALL_SPL
>  	@install -v -D -m644 $(U_BOOT_BUILD_DIR)/SPL $(IMAGEDIR)/SPL
>  endif

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-05-28  7:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26 10:27 [ptxdist] [PATCH] platforms/u-boot.in: Add U-boot efi target images to copy to image dir Christian Melki
2021-05-28  7:01 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox