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:
@@ -1,33 +0,0 @@
|
||||
From a7fe5e35025227e348eaef5a15fd55f591d77206 Mon Sep 17 00:00:00 2001
|
||||
From: John Safranek <john@wolfssl.com>
|
||||
Date: Tue, 6 Mar 2018 13:15:35 -0800
|
||||
Subject: [PATCH] Fix issue with the creation of dummy fips.h header.
|
||||
|
||||
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
wolfssl/wolfcrypt/include.am | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/wolfssl/wolfcrypt/include.am b/wolfssl/wolfcrypt/include.am
|
||||
index c81bdd13..6e84ed9d 100644
|
||||
--- a/wolfssl/wolfcrypt/include.am
|
||||
+++ b/wolfssl/wolfcrypt/include.am
|
||||
@@ -20,7 +20,6 @@ nobase_include_HEADERS+= \
|
||||
wolfssl/wolfcrypt/fe_operations.h \
|
||||
wolfssl/wolfcrypt/ge_operations.h \
|
||||
wolfssl/wolfcrypt/error-crypt.h \
|
||||
- wolfssl/wolfcrypt/fips.h \
|
||||
wolfssl/wolfcrypt/fips_test.h \
|
||||
wolfssl/wolfcrypt/hash.h \
|
||||
wolfssl/wolfcrypt/hc128.h \
|
||||
@@ -99,3 +98,7 @@ if BUILD_SELFTEST
|
||||
nobase_include_HEADERS+= wolfssl/wolfcrypt/selftest.h
|
||||
endif
|
||||
|
||||
+if BUILD_FIPS_V2
|
||||
+nobase_include_HEADERS+= wolfssl/wolfcrypt/fips.h
|
||||
+endif
|
||||
+
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Locally computed:
|
||||
sha256 4ab543c869a65a77dc5d0bc934b9d4852aa3d5834bd2f707a74a936602bd3687 v3.14.0-stable.tar.gz
|
||||
sha256 70e4fbeb91284a269b25a84fc526755c670475aee4034a6f237b1f754d108af3 v3.15.7-stable.tar.gz
|
||||
|
||||
# Hash for license files:
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
|
||||
@@ -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