Update Buildroot to 2019.02.3 (#415)
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WOLFSSL_VERSION = 3.14.0
|
||||
WOLFSSL_VERSION = 3.15.7
|
||||
WOLFSSL_SITE = https://github.com/wolfSSL/wolfssl/archive
|
||||
WOLFSSL_SOURCE = v$(WOLFSSL_VERSION)-stable.tar.gz
|
||||
WOLFSSL_INSTALL_STAGING = YES
|
||||
@@ -30,7 +30,17 @@ else
|
||||
WOLFSSL_CONF_OPTS += --disable-sslv3
|
||||
endif
|
||||
|
||||
# build fails when ARMv8 hardware acceleration is enabled
|
||||
# enable ARMv8 hardware acceleration
|
||||
ifeq ($(BR2_ARM_CPU_ARMV8A),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
|
||||
ifeq ($(BR2_aarch64),y)
|
||||
WOLFSSL_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -mstrict-align"
|
||||
endif
|
||||
else
|
||||
WOLFSSL_CONF_OPTS += --disable-armasm
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user