From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 19 Mar 2024 07:45:14 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1rmTDm-00DJUV-17 for lore@lore.pengutronix.de; Tue, 19 Mar 2024 07:45:14 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1rmTDl-0003nT-Cx; Tue, 19 Mar 2024 07:45:13 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rmTDH-0003Dr-Be; Tue, 19 Mar 2024 07:44:43 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rmTDG-007DlZ-VX; Tue, 19 Mar 2024 07:44:42 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1rmTDG-00Fuim-30; Tue, 19 Mar 2024 07:44:42 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Tue, 19 Mar 2024 07:44:42 +0100 Message-Id: <20240319064442.3792949-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240311074308.34315-4-m.heidelberg@cab.de> References: <20240311074308.34315-4-m.heidelberg@cab.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] u-boot: new options to select host-gnutls and host-libuuid 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: Markus Heidelberg 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 2dd8696c067ca5a90122746e5109a3291ed5805d. Michael [sent from post-receive hook] On Tue, 19 Mar 2024 07:44:42 +0100, Markus Heidelberg wrote: > Certain U-Boot config options (e.g. EFI_CAPSULE_ON_DISK and > FWU_MULTI_BANK_UPDATE) require host tools (e.g. TOOLS_MKEFICAPSULE and > TOOLS_MKFWUMDATA) with these libraries as dependencies. > > Signed-off-by: Markus Heidelberg > Message-Id: <20240311074308.34315-4-m.heidelberg@cab.de> > Signed-off-by: Michael Olbrich > > diff --git a/platforms/u-boot.in b/platforms/u-boot.in > index 7692370813b2..000ca491a1c2 100644 > --- a/platforms/u-boot.in > +++ b/platforms/u-boot.in > @@ -4,6 +4,8 @@ menuconfig U_BOOT > select BOOTLOADER > select HOST_SYSTEM_PYTHON3 > select HOST_OPENSSL if U_BOOT_NEEDS_HOST_OPENSSL > + select HOST_GNUTLS if U_BOOT_NEEDS_HOST_GNUTLS > + select HOST_LIBUUID if U_BOOT_NEEDS_HOST_LIBUUID > prompt "U-Boot " > bool > > @@ -286,5 +288,23 @@ config U_BOOT_NEEDS_HOST_OPENSSL > It might just increase the build time, if no other package has > host openssl selected. > > -endif > +config U_BOOT_NEEDS_HOST_GNUTLS > + prompt "needs host GnuTLS" > + bool > + help > + U-Boot from version 2022.04 includes host tools using GnuTLS for > + image signing. > > + Select this if your board config enables such tools, e.g. with > + CONFIG_TOOLS_MKEFICAPSULE. > + > +config U_BOOT_NEEDS_HOST_LIBUUID > + prompt "needs host libuuid" > + bool > + help > + U-Boot from version 2022.04 includes host tools using libuuid. > + > + Select this if your board config enables such tools, e.g. with > + CONFIG_TOOLS_MKEFICAPSULE or CONFIG_TOOLS_MKFWUMDATA. > + > +endif