Signed-off-by: Christian Melki <[email protected]>
---
 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
[email protected]
To unsubscribe, send a mail with subject "unsubscribe" to 
[email protected]

Reply via email to