Bump buidlroot version to 2018.02.6
This commit is contained in:
27
bsp/buildroot/package/wolfssl/Config.in
Normal file
27
bsp/buildroot/package/wolfssl/Config.in
Normal file
@@ -0,0 +1,27 @@
|
||||
config BR2_PACKAGE_WOLFSSL
|
||||
bool "wolfssl"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
The wolfSSL embedded SSL library (formerly CyaSSL) is a
|
||||
lightweight, portable, C-language-based SSL/TLS library
|
||||
targeted at IoT, embedded, and RTOS environments primarily
|
||||
because of its size, speed, and feature set.
|
||||
|
||||
https://www.wolfssl.com/
|
||||
|
||||
if BR2_PACKAGE_WOLFSSL
|
||||
|
||||
config BR2_PACKAGE_WOLFSSL_ALL
|
||||
bool "enable all features, except SSLv3"
|
||||
help
|
||||
Enable all wolfSSL features, except SSL version 3.0 support.
|
||||
|
||||
config BR2_PACKAGE_WOLFSSL_SSLV3
|
||||
bool "enable SSLv3"
|
||||
help
|
||||
Enable SSL version 3.0 support.
|
||||
|
||||
endif
|
||||
|
||||
comment "wolfssl needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
6
bsp/buildroot/package/wolfssl/wolfssl.hash
Normal file
6
bsp/buildroot/package/wolfssl/wolfssl.hash
Normal file
@@ -0,0 +1,6 @@
|
||||
# Locally computed:
|
||||
sha256 3bafeb0cb7eaff80002ba3f7cbb70023757bcc35fc4d82181945b143f1f927c6 v3.13.0-stable.tar.gz
|
||||
|
||||
# Hash for license files:
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
sha256 74adaaef40b96c71378b6daa3feb8ccd4a1bfd9b76debf3f3f29cf3a0e86c9a0 LICENSING
|
||||
35
bsp/buildroot/package/wolfssl/wolfssl.mk
Normal file
35
bsp/buildroot/package/wolfssl/wolfssl.mk
Normal file
@@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# wolfssl
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WOLFSSL_VERSION = 3.13.0
|
||||
WOLFSSL_SITE = https://github.com/wolfSSL/wolfssl/archive
|
||||
WOLFSSL_SOURCE = v$(WOLFSSL_VERSION)-stable.tar.gz
|
||||
|
||||
WOLFSSL_LICENSE = GPL-2.0
|
||||
WOLFSSL_LICENSE_FILES = COPYING LICENSING
|
||||
|
||||
WOLFSSL_DEPENDENCIES = host-pkgconf
|
||||
|
||||
# wolfssl's source code is released without a configure
|
||||
# script, so we need autoreconf
|
||||
WOLFSSL_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WOLFSSL_ALL),y)
|
||||
WOLFSSL_CONF_OPTS += --enable-all
|
||||
else
|
||||
WOLFSSL_CONF_OPTS += --disable-all
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WOLFSSL_SSLV3),y)
|
||||
WOLFSSL_CONF_OPTS += --enable-sslv3
|
||||
else
|
||||
WOLFSSL_CONF_OPTS += --disable-sslv3
|
||||
endif
|
||||
|
||||
# build fails when ARMv8 hardware acceleration is enabled
|
||||
WOLFSSL_CONF_OPTS += --disable-armasm
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user