diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2019-02-22 21:53:04 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2019-02-22 22:25:57 +0100 |
commit | 3e4b32691bc558f253618b7a2f41f6fce4bcbed6 (patch) | |
tree | d33484f275a7e793fc129189922cade12cc5bf63 | |
parent | 26d072978982137c9f09abe3c7bfbfd2a13efc64 (diff) | |
download | buildroot-3e4b32691bc558f253618b7a2f41f6fce4bcbed6.tar.gz buildroot-3e4b32691bc558f253618b7a2f41f6fce4bcbed6.zip |
configs/rock64: Linux needs host OpenSSL
The Linux configuration used in the rock64_defconfig requires
host-openssl to be built, otherwise the build fails with:
scripts/extract-cert.c:21:25: fatal error: openssl/bio.h: No such file or directory
#include <openssl/bio.h>
So let's enable BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/165766161
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | configs/rock64_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/rock64_defconfig b/configs/rock64_defconfig index 50ffc0474f..30bf12c061 100644 --- a/configs/rock64_defconfig +++ b/configs/rock64_defconfig @@ -12,6 +12,7 @@ BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y BR2_LINUX_KERNEL_DTS_SUPPORT=y BR2_LINUX_KERNEL_INTREE_DTS_NAME="rockchip/rk3328-rock64" BR2_LINUX_KERNEL_INSTALL_TARGET=y +BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_4=y BR2_TARGET_ROOTFS_EXT2_SIZE="128M" |