diff options
Diffstat (limited to 'system/test-kernel/0126-sign-file-libressl.patch')
-rw-r--r-- | system/test-kernel/0126-sign-file-libressl.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/system/test-kernel/0126-sign-file-libressl.patch b/system/test-kernel/0126-sign-file-libressl.patch deleted file mode 100644 index e6ec017d4..000000000 --- a/system/test-kernel/0126-sign-file-libressl.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/scripts/sign-file.c 2020-05-20 18:47:21.282820662 -0400 -+++ b/scripts/sign-file.c 2020-05-20 18:48:37.991081899 -0400 -@@ -41,9 +41,10 @@ - * signing with anything other than SHA1 - so we're stuck with that if such is - * the case. - */ --#if defined(LIBRESSL_VERSION_NUMBER) || \ -- OPENSSL_VERSION_NUMBER < 0x10000000L || \ -- defined(OPENSSL_NO_CMS) -+#if defined(OPENSSL_NO_CMS) || \ -+ ( defined(LIBRESSL_VERSION_NUMBER) \ -+ && (LIBRESSL_VERSION_NUMBER < 0x3010000fL) ) || \ -+ OPENSSL_VERSION_NUMBER < 0x10000000L - #define USE_PKCS7 - #endif - #ifndef USE_PKCS7 |