diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-09-29 11:23:27 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-09-29 11:23:27 +0200 |
commit | 2b3b63aea301412b2c42e7bfe3c59e566ac4eaa9 (patch) | |
tree | 9f894df5fa0abfa1ba983d1d4aa0bd92c1e22565 /target | |
parent | 9f6d8532c78bf5f7a0dad3f976f7402f0d10be21 (diff) | |
download | upstream-2b3b63aea301412b2c42e7bfe3c59e566ac4eaa9.tar.gz upstream-2b3b63aea301412b2c42e7bfe3c59e566ac4eaa9.tar.bz2 upstream-2b3b63aea301412b2c42e7bfe3c59e566ac4eaa9.zip |
kernel: fix build error in sign-file.c with libressl
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-4.4/211-sign-file-libressl.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/generic/patches-4.4/211-sign-file-libressl.patch b/target/linux/generic/patches-4.4/211-sign-file-libressl.patch new file mode 100644 index 0000000000..c174087f10 --- /dev/null +++ b/target/linux/generic/patches-4.4/211-sign-file-libressl.patch @@ -0,0 +1,16 @@ +LibreSSL disables the CMS subsystem, so sign-file.c needs to fall back to using +PKCS#7 in that case. + +Signed-off-by: Felix Fietkau <nbd@nbd.name> + +--- a/scripts/sign-file.c ++++ b/scripts/sign-file.c +@@ -39,7 +39,7 @@ + * signing with anything other than SHA1 - so we're stuck with that if such is + * the case. + */ +-#if OPENSSL_VERSION_NUMBER < 0x10000000L ++#if defined(LIBRESSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER < 0x10000000L + #define USE_PKCS7 + #endif + #ifndef USE_PKCS7 |