From: juhosg Date: Sat, 9 May 2009 06:16:56 +0000 (+0000) Subject: [package] kernel/modules: build pcompress.ko for kernel >=2.6.30 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=f2e92218b49fcee06ca568e3a3b229f14362f23a;p=openwrt.git [package] kernel/modules: build pcompress.ko for kernel >=2.6.30 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15737 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index 78a8a19fbf..68c1a95cfe 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -28,11 +28,14 @@ endif ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.26)),1) SHA512_SUFFIX:=$(CRYPTO_GENERIC) endif +ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1) + CRYPTO_MODULE_PCOMPRESS:=PCOMPRESS=pcompress +endif CRYPTO_MODULES = \ ALGAPI=crypto_algapi \ AEAD=aead \ - $(if $(LINUX_2_6_30),PCOMPRESS=pcompress) \ + $(CRYPTO_MODULE_PCOMPRESS) \ BLKCIPHER=$(BLKCIPHER_PREFIX)blkcipher \ HASH=crypto_hash \ MANAGER=cryptomgr \