From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 28 May 2021 09:02:29 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lmWVp-0004CF-RN for lore@lore.pengutronix.de; Fri, 28 May 2021 09:02:29 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lmWVp-0006lK-5f; Fri, 28 May 2021 09:02:29 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lmWUn-0005Rk-MC; Fri, 28 May 2021 09:01:25 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lmWUn-00076y-2a; Fri, 28 May 2021 09:01:25 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1lmWUn-003LFE-21; Fri, 28 May 2021 09:01:25 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 28 May 2021 09:01:25 +0200 Message-Id: <20210528070125.796128-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210526102756.22358-1-christian.melki@t2data.com> References: <20210526102756.22358-1-christian.melki@t2data.com> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] platforms/u-boot.in: Add U-boot efi target images to copy to image dir. X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Christian Melki Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as a29533b3fd22bc5bbbdbdf1c8c79f7609e3f2703. Michael [sent from post-receive hook] On Fri, 28 May 2021 09:01:24 +0200, Christian Melki wrote: > Signed-off-by: Christian Melki > Message-Id: <20210526102756.22358-1-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > 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