diff options
author | Andy Boyett <agb@openwrt.org> | 2009-10-05 17:05:43 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2009-10-05 17:05:43 +0000 |
commit | dc4100c7f9f712997f620e4146b35a5d00a6b2d6 (patch) | |
tree | b9387ec9fa550f14eee87a9fcf252463b04299c4 | |
parent | e44c2d2d14e0f0d054da1bd3fd5ed411b900e65e (diff) | |
download | upstream-dc4100c7f9f712997f620e4146b35a5d00a6b2d6.tar.gz upstream-dc4100c7f9f712997f620e4146b35a5d00a6b2d6.tar.bz2 upstream-dc4100c7f9f712997f620e4146b35a5d00a6b2d6.zip |
[kernel] modules/crypto: package AMCC ppc4xx hardware crypto driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17906 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/kernel/modules/crypto.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index e2361a26c0..f75ebe9f81 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -139,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 |