diff options
| author | hauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-04-02 19:31:21 +0000 | 
|---|---|---|
| committer | hauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-04-02 19:31:21 +0000 | 
| commit | 6a2bf2fdb91b3b0f6a43755a4d32febcaeb414f0 (patch) | |
| tree | 16b00a1e9bc3a5c56cc7107741d028636a31feba | |
| parent | 1a74e76fb9283d31c040d1253e635c9a1e56afd0 (diff) | |
kernel: remove double definition of depends in crypto-mv-cesa and make it look like the other entries.
Thank you Maarten
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26413 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/kernel/modules/crypto.mk | 13 | 
1 files changed, 6 insertions, 7 deletions
diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index 685305066..467db8ee2 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -427,13 +427,12 @@ endef  $(eval $(call KernelPackage,crypto-xts))  define KernelPackage/crypto-mv-cesa -   TITLE:=Marvell crypto engine -   DEPENDS:=+kmod-crypto-manager -   KCONFIG:=CONFIG_CRYPTO_DEV_MV_CESA -   FILES:=$(LINUX_DIR)/drivers/crypto/mv_cesa.ko -   AUTOLOAD:=$(call AutoLoad,09,mv_cesa) -   SUBMENU:=Cryptographic API modules -   DEPENDS:=kmod-crypto-core @TARGET_kirkwood||TARGET_orion +  TITLE:=Marvell crypto engine +  DEPENDS:=+kmod-crypto-manager @TARGET_kirkwood||TARGET_orion +  KCONFIG:=CONFIG_CRYPTO_DEV_MV_CESA +  FILES:=$(LINUX_DIR)/drivers/crypto/mv_cesa.ko +  AUTOLOAD:=$(call AutoLoad,09,mv_cesa) +  $(call AddDepends/crypto)  endef  $(eval $(call KernelPackage,crypto-mv-cesa))  | 
