diff options
author | Michael Büsch <mb@bu3sch.de> | 2010-09-11 21:42:37 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2010-09-11 21:42:37 +0000 |
commit | 393c83514bf9321f67910ec4ca00abf9922b74a6 (patch) | |
tree | 34df02e098b2da3754e8535827ee90a5dd98da89 /package/kernel/modules | |
parent | f3dd8278bbc3cc62c35239a2721144e220b24004 (diff) | |
download | upstream-393c83514bf9321f67910ec4ca00abf9922b74a6.tar.gz upstream-393c83514bf9321f67910ec4ca00abf9922b74a6.tar.bz2 upstream-393c83514bf9321f67910ec4ca00abf9922b74a6.zip |
Fix kernel crypto modules for >= 2.6.36
SVN-Revision: 23026
Diffstat (limited to 'package/kernel/modules')
-rw-r--r-- | package/kernel/modules/crypto.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index 9227deb80b..1ec540be1b 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -22,9 +22,9 @@ SHA256_SUFFIX:=$(CRYPTO_GENERIC) SHA512_SUFFIX:=$(CRYPTO_GENERIC) CRYPTO_MODULES = \ - ALGAPI=crypto_algapi \ + $(if $(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.36)),ALGAPI2,ALGAPI)=crypto_algapi \ AEAD2=aead \ - PCOMP=pcompress \ + $(if $(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.36)),PCOMP2,PCOMP)=pcompress \ BLKCIPHER2=crypto_blkcipher \ HASH2=crypto_hash \ MANAGER2=cryptomgr \ |