fix kmod-crypto-core compile with 2.6.30 (#5201)

SVN-Revision: 16175
This commit is contained in:
Felix Fietkau 2009-05-29 11:12:47 +00:00
parent 3f599cc633
commit 82139b165b

View File

@ -28,17 +28,23 @@ endif
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.26)),1) ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.26)),1)
SHA512_SUFFIX:=$(CRYPTO_GENERIC) SHA512_SUFFIX:=$(CRYPTO_GENERIC)
endif endif
AEAD_CONF:=AEAD
MANAGER_CONF:=MANAGER
BLKCIPHER_CONF:=BLKCIPHER
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1) ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1)
CRYPTO_MODULE_PCOMPRESS:=PCOMP=pcompress CRYPTO_MODULE_PCOMPRESS:=PCOMP=pcompress
AEAD_CONF:=AEAD2
MANAGER_CONF:=MANAGER2
BLKCIPHER_CONF:=BLKCIPHER2
endif endif
CRYPTO_MODULES = \ CRYPTO_MODULES = \
ALGAPI=crypto_algapi \ ALGAPI=crypto_algapi \
AEAD=aead \ $(AEAD_CONF)=aead \
$(CRYPTO_MODULE_PCOMPRESS) \ $(CRYPTO_MODULE_PCOMPRESS) \
BLKCIPHER=$(BLKCIPHER_PREFIX)blkcipher \ $(BLKCIPHER_CONF)=$(BLKCIPHER_PREFIX)blkcipher \
HASH=crypto_hash \ HASH=crypto_hash \
MANAGER=cryptomgr \ $(MANAGER_CONF)=cryptomgr \
CBC=cbc \ CBC=cbc \
ECB=ecb \ ECB=ecb \
DEFLATE=deflate DEFLATE=deflate