From 1f1e32f6d7e66e37e8ea79da08c91eff590078b3 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Thu, 17 Feb 2022 16:55:48 +0100 Subject: [PATCH] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl Fixes the following compile error: In file included from include/bootm.h:10, from tools/image-host.c:12: include/image.h:1178:12: fatal error: openssl/evp.h: No such file or directory 1178 | # include | ^~~~~~~~~~~~~~~ compilation terminated. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784200 Signed-off-by: Marcus Hoffmann Reviewed-by: Giulio Benetti Signed-off-by: Yann E. MORIN --- configs/friendlyarm_nanopi_r2s_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/friendlyarm_nanopi_r2s_defconfig b/configs/friendlyarm_nanopi_r2s_defconfig index 818c847f4b..ce252a5d76 100644 --- a/configs/friendlyarm_nanopi_r2s_defconfig +++ b/configs/friendlyarm_nanopi_r2s_defconfig @@ -30,6 +30,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10" BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nanopi-r2s-rk3328" BR2_TARGET_UBOOT_NEEDS_DTC=y BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y BR2_TARGET_UBOOT_NEEDS_ATF_BL31=y BR2_TARGET_UBOOT_NEEDS_ATF_BL31_ELF=y BR2_TARGET_UBOOT_FORMAT_CUSTOM=y