From eb9bb656299700a543dc675e6baca0bfe9f53870 Mon Sep 17 00:00:00 2001 From: Bryan Brattlof Date: Wed, 18 Dec 2024 18:37:55 -0600 Subject: [PATCH] boot/ti-k3-r5-loader: add host-gnutls to dependencies Newer versions of U-Boot (2024.10 and newer) will require the GnuTLS library to be installed on the host machine to build the mkeficapsule tool for U-Boot's image packaging phase to generate the final capsule for all the boot images including the tiboot3.bin image. Add host-gnutls to the list of dependencies. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/8723483578 (ti_am62x_sk_defconfig) Signed-off-by: Bryan Brattlof Signed-off-by: Romain Naour --- boot/ti-k3-r5-loader/ti-k3-r5-loader.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/ti-k3-r5-loader/ti-k3-r5-loader.mk b/boot/ti-k3-r5-loader/ti-k3-r5-loader.mk index e426f039e0..db5c3cdaf8 100644 --- a/boot/ti-k3-r5-loader/ti-k3-r5-loader.mk +++ b/boot/ti-k3-r5-loader/ti-k3-r5-loader.mk @@ -46,6 +46,7 @@ TI_K3_R5_LOADER_DEPENDENCIES = \ host-pkgconf \ $(BR2_MAKE_HOST_DEPENDENCY) \ host-arm-gnu-toolchain \ + host-gnutls \ host-openssl \ host-python3 \ host-python-jsonschema \