mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
For more information about the release, see: - https://github.com/wolfSSL/wolfssl/releases/tag/v5.9.2-stable Fixes the following vulnerabilities: - CVE-2026-6091: https://www.cve.org/CVERecord?id=CVE-2026-6091 - CVE-2026-6092: https://www.cve.org/CVERecord?id=CVE-2026-6092 - CVE-2026-6094: https://www.cve.org/CVERecord?id=CVE-2026-6094 - CVE-2026-6291: https://www.cve.org/CVERecord?id=CVE-2026-6291 - CVE-2026-6325: https://www.cve.org/CVERecord?id=CVE-2026-6325 - CVE-2026-6329: https://www.cve.org/CVERecord?id=CVE-2026-6329 - CVE-2026-6330: https://www.cve.org/CVERecord?id=CVE-2026-6330 - CVE-2026-6331: https://www.cve.org/CVERecord?id=CVE-2026-6331 - CVE-2026-6412: https://www.cve.org/CVERecord?id=CVE-2026-6412 - CVE-2026-6450: https://www.cve.org/CVERecord?id=CVE-2026-6450 - CVE-2026-6678: https://www.cve.org/CVERecord?id=CVE-2026-6678 - CVE-2026-6681: https://www.cve.org/CVERecord?id=CVE-2026-6681 - CVE-2026-6731: https://www.cve.org/CVERecord?id=CVE-2026-6731 - CVE-2026-7511: https://www.cve.org/CVERecord?id=CVE-2026-7511 - CVE-2026-7531: https://www.cve.org/CVERecord?id=CVE-2026-7531 - CVE-2026-7532: https://www.cve.org/CVERecord?id=CVE-2026-7532 - CVE-2026-8720: https://www.cve.org/CVERecord?id=CVE-2026-8720 - CVE-2026-10097: https://www.cve.org/CVERecord?id=CVE-2026-10097 - CVE-2026-10098: https://www.cve.org/CVERecord?id=CVE-2026-10098 - CVE-2026-10512: https://www.cve.org/CVERecord?id=CVE-2026-10512 - CVE-2026-10592: https://www.cve.org/CVERecord?id=CVE-2026-10592 - CVE-2026-11310: https://www.cve.org/CVERecord?id=CVE-2026-11310 - CVE-2026-11703: https://www.cve.org/CVERecord?id=CVE-2026-11703 - CVE-2026-11999: https://www.cve.org/CVERecord?id=CVE-2026-11999 - CVE-2026-12340: https://www.cve.org/CVERecord?id=CVE-2026-12340 - CVE-2026-55958: https://www.cve.org/CVERecord?id=CVE-2026-55958 - CVE-2026-55960: https://www.cve.org/CVERecord?id=CVE-2026-55960 - CVE-2026-55961: https://www.cve.org/CVERecord?id=CVE-2026-55961 - CVE-2026-55962: https://www.cve.org/CVERecord?id=CVE-2026-55962 - CVE-2026-55964: https://www.cve.org/CVERecord?id=CVE-2026-55964 - CVE-2026-55967: https://www.cve.org/CVERecord?id=CVE-2026-55967 Signed-off-by: Thomas Perale <thomas.perale@mind.be> Signed-off-by: Julien Olivain <ju.o@free.fr>
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# wolfssl
|
|
#
|
|
################################################################################
|
|
|
|
WOLFSSL_VERSION = 5.9.2
|
|
WOLFSSL_SITE = $(call github,wolfSSL,wolfssl,v$(WOLFSSL_VERSION)-stable)
|
|
WOLFSSL_INSTALL_STAGING = YES
|
|
|
|
WOLFSSL_LICENSE = GPL-3.0+
|
|
WOLFSSL_LICENSE_FILES = COPYING LICENSING
|
|
WOLFSSL_CPE_ID_VENDOR = wolfssl
|
|
WOLFSSL_CONFIG_SCRIPTS = wolfssl-config
|
|
# From git
|
|
WOLFSSL_AUTORECONF = YES
|
|
WOLFSSL_DEPENDENCIES = host-pkgconf
|
|
|
|
WOLFSSL_CONF_OPTS = \
|
|
--disable-examples \
|
|
--disable-crypttests \
|
|
--disable-option-checking
|
|
|
|
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
|
|
|
|
ifeq ($(BR2_PACKAGE_WOLFSSL_ASM_SUPPORTS),y)
|
|
WOLFSSL_CONF_OPTS += --enable-asm
|
|
else
|
|
WOLFSSL_CONF_OPTS += --disable-asm
|
|
endif
|
|
|
|
# enable ARMv8 hardware acceleration
|
|
ifeq ($(BR2_aarch64),y)
|
|
WOLFSSL_CONF_OPTS += --enable-armasm
|
|
# the flag -mstrict-align is needed to prevent build errors caused by
|
|
# some inline assembly in parts of the AES structure using the "m"
|
|
# constraint
|
|
WOLFSSL_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -mstrict-align"
|
|
else
|
|
WOLFSSL_CONF_OPTS += --disable-armasm
|
|
endif
|
|
|
|
ifeq ($(BR2_ARM_INSTRUCTIONS_THUMB),y)
|
|
WOLFSSL_CONF_OPTS += --with-arm-target=thumb
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|