diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-03-13 18:37:36 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-05-01 17:05:54 -0500 |
commit | 5ee14d3ae6662498723b1daf6f00f1a71521740f (patch) | |
tree | 9898987815da56f4f2b79c6e85ceb384c24ebb15 /system/easy-kernel/0126-sign-file-libressl.patch | |
parent | 59e83832ec569bcc4b2dd0b39d5553aa5210cb81 (diff) | |
download | packages-5ee14d3ae6662498723b1daf6f00f1a71521740f.tar.gz packages-5ee14d3ae6662498723b1daf6f00f1a71521740f.tar.bz2 packages-5ee14d3ae6662498723b1daf6f00f1a71521740f.tar.xz packages-5ee14d3ae6662498723b1daf6f00f1a71521740f.zip |
system/easy-kernel: Replace with 5.15 test-kernel
Diffstat (limited to 'system/easy-kernel/0126-sign-file-libressl.patch')
-rw-r--r-- | system/easy-kernel/0126-sign-file-libressl.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/easy-kernel/0126-sign-file-libressl.patch b/system/easy-kernel/0126-sign-file-libressl.patch new file mode 100644 index 000000000..e6ec017d4 --- /dev/null +++ b/system/easy-kernel/0126-sign-file-libressl.patch @@ -0,0 +1,16 @@ +--- 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 |