1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-26 03:33:19 +02:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16175 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-05-29 11:12:47 +00:00
parent b6f35d6bdf
commit bdf8b57032

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