X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=package%2Fkernel%2Fmodules%2Fcrypto.mk;h=012b68befaf1e31b15b3ffa8bbffcb4c18b8961b;hb=0fd5c228ecc77d51e51296a9a581318bcfad60a7;hp=68c1a95cfe82a62e880695c55140c30d4986fc6a;hpb=f2e92218b49fcee06ca568e3a3b229f14362f23a;p=openwrt.git diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index 68c1a95cfe..012b68befa 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -28,17 +28,25 @@ endif ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.26)),1) SHA512_SUFFIX:=$(CRYPTO_GENERIC) endif +AEAD_CONF:=AEAD +MANAGER_CONF:=MANAGER +BLKCIPHER_CONF:=BLKCIPHER +HASH_CONF:=HASH ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1) - CRYPTO_MODULE_PCOMPRESS:=PCOMPRESS=pcompress + CRYPTO_MODULE_PCOMPRESS:=PCOMP=pcompress + AEAD_CONF:=AEAD2 + MANAGER_CONF:=MANAGER2 + BLKCIPHER_CONF:=BLKCIPHER2 + HASH_CONF:=HASH2 endif CRYPTO_MODULES = \ ALGAPI=crypto_algapi \ - AEAD=aead \ + $(AEAD_CONF)=aead \ $(CRYPTO_MODULE_PCOMPRESS) \ - BLKCIPHER=$(BLKCIPHER_PREFIX)blkcipher \ - HASH=crypto_hash \ - MANAGER=cryptomgr \ + $(BLKCIPHER_CONF)=$(BLKCIPHER_PREFIX)blkcipher \ + $(HASH_CONF)=crypto_hash \ + $(MANAGER_CONF)=cryptomgr \ CBC=cbc \ ECB=ecb \ DEFLATE=deflate @@ -100,7 +108,7 @@ $(eval $(call KernelPackage,crypto-hw-geode)) define KernelPackage/crypto-hw-hifn-795x SUBMENU:=$(CRYPTO_MENU) TITLE:=HIFN 795x crypto accelerator - DEPENDS:=+kmod-crypto-core +kmod-crypto-des + DEPENDS:=+kmod-crypto-core +kmod-crypto-des @!TARGET_ubicom32 KCONFIG:= \ CONFIG_CRYPTO_HW=y \ CONFIG_CRYPTO_DEV_HIFN_795X \ @@ -117,7 +125,9 @@ define KernelPackage/crypto-hw-ixp4xx TITLE:=Intel IXP4xx hardware crypto module DEPENDS:= \ @TARGET_ixp4xx +kmod-crypto-core +kmod-crypto-des +kmod-crypto-authenc - KCONFIG:= CONFIG_CRYPTO_DEV_IXP4XX + KCONFIG:= \ + CONFIG_CRYPTO_HW=y \ + CONFIG_CRYPTO_DEV_IXP4XX FILES:=$(LINUX_DIR)/drivers/crypto/ixp4xx_crypto.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,90,ixp4xx_crypto) endef @@ -129,6 +139,25 @@ endef $(eval $(call KernelPackage,crypto-hw-ixp4xx)) +define KernelPackage/crypto-hw-ppc4xx + SUBMENU:=$(CRYPTO_MENU) + TITLE:=AMCC PPC4xx hardware crypto module + DEPENDS:= \ + @TARGET_ppc40x||TARGET_ppc44x +kmod-crypto-core + KCONFIG:= \ + CONFIG_CRYPTO_HW=y \ + CONFIG_CRYPTO_DEV_PPC4XX + FILES:=$(LINUX_DIR)/drivers/crypto/amcc/crypto4xx.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,90,crypto4xx) +endef + +define KernelPackage/crypto-hw-ppc4xx/description + Kernel support for the AMCC PPC4xx HW crypto engine. +endef + +$(eval $(call KernelPackage,crypto-hw-ppc4xx)) + + define KernelPackage/crypto-aes SUBMENU:=$(CRYPTO_MENU) TITLE:=AES cipher CryptoAPI module