aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch
diff options
context:
space:
mode:
authorEneas U de Queiroz <cotequeiroz@gmail.com>2020-12-29 14:49:20 -0300
committerHauke Mehrtens <hauke@hauke-m.de>2021-01-01 19:55:59 +0100
commitba40da9045f77feb04abe63eb8a92f13f9efe471 (patch)
tree879eac91fbeb2a16c61bfc25bbb129e6bc1a5d5f /package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch
parent9dc15e36c8b82f0c30abba846c5f5e50ec7968ee (diff)
downloadupstream-ba40da9045f77feb04abe63eb8a92f13f9efe471.tar.gz
upstream-ba40da9045f77feb04abe63eb8a92f13f9efe471.tar.bz2
upstream-ba40da9045f77feb04abe63eb8a92f13f9efe471.zip
wolfssl: Update to v4.6.0-stable
This version fixes a large number of bugs, although no security vulnerabilities are listed. Full changelog at: https://www.wolfssl.com/docs/wolfssl-changelog/ or, as part of the version's README.md: https://github.com/wolfSSL/wolfssl/blob/v4.6.0-stable/README.md Due a number of API additions, size increases from 374.7K to 408.8K for arm_cortex_a9_vfpv3-d16. The ABI does not change from previous version. Backported patches were removed; remaining patch was refreshed. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch')
-rw-r--r--package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch b/package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch
deleted file mode 100644
index 3838865559..0000000000
--- a/package/libs/wolfssl/patches/110-fix-build-on-big-endian.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From b90acc91d0cd276befe7f08f87ba2dc5ee7122ff Mon Sep 17 00:00:00 2001
-From: Tesfa Mael <tesfa@wolfssl.com>
-Date: Wed, 26 Aug 2020 10:13:06 -0700
-Subject: [PATCH] Make ByteReverseWords available for big and little endian
-
----
- wolfcrypt/src/misc.c | 2 --
- 1 file changed, 2 deletions(-)
-
---- a/wolfcrypt/src/misc.c
-+++ b/wolfcrypt/src/misc.c
-@@ -120,7 +120,6 @@ WC_STATIC WC_INLINE word32 ByteReverseWo
- return rotlFixed(value, 16U);
- #endif
- }
--#if defined(LITTLE_ENDIAN_ORDER)
- /* This routine performs a byte swap of words array of a given count. */
- WC_STATIC WC_INLINE void ByteReverseWords(word32* out, const word32* in,
- word32 byteCount)
-@@ -131,7 +130,6 @@ WC_STATIC WC_INLINE void ByteReverseWord
- out[i] = ByteReverseWord32(in[i]);
-
- }
--#endif /* LITTLE_ENDIAN_ORDER */
-
- #if defined(WORD64_AVAILABLE) && !defined(WOLFSSL_NO_WORD64_OPS)
-