1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:49:50 +03:00

[ixp4xx] move crypto module to target specific modules.mk

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32856 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2012-07-25 15:50:16 +00:00
parent 1bf0057f4d
commit c4d4dc6faf
2 changed files with 17 additions and 17 deletions

View File

@ -154,23 +154,6 @@ endef
$(eval $(call KernelPackage,crypto-hw-hifn-795x))
define KernelPackage/crypto-hw-ixp4xx
TITLE:=Intel IXP4xx hardware crypto module
DEPENDS:=@TARGET_ixp4xx
KCONFIG:= \
CONFIG_CRYPTO_DEV_IXP4XX
FILES:=$(LINUX_DIR)/drivers/crypto/ixp4xx_crypto.ko
AUTOLOAD:=$(call AutoLoad,90,ixp4xx_crypto)
$(call AddDepends/crypto,+kmod-crypto-authenc +kmod-crypto-des)
endef
define KernelPackage/crypto-hw-ixp4xx/description
Kernel support for the Intel IXP4xx HW crypto engine.
endef
$(eval $(call KernelPackage,crypto-hw-ixp4xx))
define KernelPackage/crypto-hw-ppc4xx
TITLE:=AMCC PPC4xx hardware crypto module
DEPENDS:=@TARGET_ppc40x||TARGET_ppc44x

View File

@ -39,3 +39,20 @@ define KernelPackage/ixp4xx-beeper/description
endef
$(eval $(call KernelPackage,ixp4xx-beeper))
define KernelPackage/crypto-hw-ixp4xx
TITLE:=Intel IXP4xx hardware crypto module
DEPENDS:=@TARGET_ixp4xx
KCONFIG:= \
CONFIG_CRYPTO_DEV_IXP4XX
FILES:=$(LINUX_DIR)/drivers/crypto/ixp4xx_crypto.ko
AUTOLOAD:=$(call AutoLoad,90,ixp4xx_crypto)
$(call AddDepends/crypto,+kmod-crypto-authenc +kmod-crypto-des)
endef
define KernelPackage/crypto-hw-ixp4xx/description
Kernel support for the Intel IXP4xx HW crypto engine.
endef
$(eval $(call KernelPackage,crypto-hw-ixp4xx))