From ea667f523aee0a4cb38a2be524bc46a2cc9f26e0 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 25 Dec 2021 11:35:31 +0100 Subject: [PATCH] configs/stm32f469_disco_sd: U-Boot needs host-openssl Fixes: In file included from include/bootm.h:10:0, from tools/image-host.c:12: include/image.h:1178:27: fatal error: openssl/evp.h: No such file or directory # include ^ compilation terminated. scripts/Makefile.host:112: recipe for target 'tools/image-host.o' failed make[2]: *** [tools/image-host.o] Error 1 Signed-off-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- configs/stm32f469_disco_sd_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stm32f469_disco_sd_defconfig b/configs/stm32f469_disco_sd_defconfig index 5ad4068e5e..ea1361efc0 100644 --- a/configs/stm32f469_disco_sd_defconfig +++ b/configs/stm32f469_disco_sd_defconfig @@ -19,6 +19,7 @@ BR2_TARGET_ROOTFS_EXT2_SIZE="32M" # BR2_TARGET_ROOTFS_TAR is not set BR2_TARGET_UBOOT=y BR2_TARGET_UBOOT_BOARD_DEFCONFIG="stm32f469-discovery" +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y BR2_PACKAGE_HOST_DOSFSTOOLS=y BR2_PACKAGE_HOST_GENIMAGE=y BR2_PACKAGE_HOST_MTOOLS=y