Skip to content

Commit

Permalink
wolfssl: change defaults to cover wpa_supplicant needs
Browse files Browse the repository at this point in the history
Implicetely selecting the required options via Kconfig snippet from
hostapd worked fine in local builds when using menuconfig but confused
the buildbots which (in phase1) may build wpad-mini and hence already
come with CONFIG_WPA_WOLFSSL being defined as unset which then won't
trigger changing the defaults of wolfssl.

Work around by explicitely reflecting wpa_supplicant's needs in
wolfssl's default settings to make buildbots happy.

Signed-off-by: Daniel Golle <[email protected]>
  • Loading branch information
dangowrt committed May 30, 2018
1 parent a70a0a5 commit dad3924
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions package/libs/wolfssl/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ if PACKAGE_libwolfssl

config WOLFSSL_HAS_AES_CCM
bool "Include AES-CCM support"
default n
default y

config WOLFSSL_HAS_AES_GCM
bool "Include AES-GCM support"
default n
default y

config WOLFSSL_HAS_CHACHA
bool "Include ChaCha cipher suite support"
Expand All @@ -18,35 +18,35 @@ config WOLFSSL_HAS_ECC

config WOLFSSL_HAS_DH
bool "Include DH (Diffie-Hellman) support"
default n
default y

config WOLFSSL_HAS_ARC4
bool "Include ARC4 support"
default n
default y

config WOLFSSL_HAS_DES3
bool "Include DES3 (Tripple-DES) support"
default n
default y

config WOLFSSL_HAS_PSK
bool "Include PKS (Pre Share Key) support"
default n
default y

config WOLFSSL_HAS_SESSION_TICKET
bool "Include session ticket support"
default n
default y

config WOLFSSL_HAS_DTLS
bool "Include DTLS support"
default n

config WOLFSSL_HAS_OCSP
bool "Include OSCP support"
default n
default y

config WOLFSSL_HAS_WPAS
bool "Include wpa_supplicant support"
default n
default y

config WOLFSSL_HAS_ECC25519
bool "Include ECC Curve 22519 support"
Expand Down
2 changes: 1 addition & 1 deletion package/libs/wolfssl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=wolfssl
PKG_VERSION:=3.14.4
PKG_RELEASE:=2
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
# PKG_SOURCE_URL:=https://www.wolfssl.com/
Expand Down

0 comments on commit dad3924

Please sign in to comment.