diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2009-03-24 13:44:20 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2009-03-24 13:44:20 +0000 |
commit | 78346af2ba5135a0822d364440816c6ebe0c2d5a (patch) | |
tree | 70677cd906a56d563ed8e486a65e3a0f81f3bcf1 /package/kernel | |
parent | 3e29755e51fa0625b0abd19cfce34d79f262c378 (diff) | |
download | upstream-78346af2ba5135a0822d364440816c6ebe0c2d5a.tar.gz upstream-78346af2ba5135a0822d364440816c6ebe0c2d5a.tar.bz2 upstream-78346af2ba5135a0822d364440816c6ebe0c2d5a.zip |
[kernel] kmod-crypto-hmac and kmod-crypto-core both are packing hmac.ko
kmod-crypto-hmac only needs the symbol for building crypto_hash, this was done in r9004.
With r13850 hmac.ko was also packed with kmod-crypto-core.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15015 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/crypto.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index f675c5aacf..5edf5f17f9 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -38,7 +38,6 @@ CRYPTO_MODULES = \ HASH=crypto_hash \ CBC=cbc \ ECB=ecb \ - HMAC=hmac \ DEFLATE=deflate crypto_confvar=CONFIG_CRYPTO_$(word 1,$(subst =,$(space),$(1))) @@ -50,7 +49,7 @@ crypto_name=$(if $(findstring y,$($(call crypto_confvar,$(1)))),,$(word 2,$(subs define KernelPackage/crypto-core SUBMENU:=$(CRYPTO_MENU) TITLE:=Core CryptoAPI modules - KCONFIG:=CONFIG_CRYPTO=y $(foreach mod,$(CRYPTO_MODULES),$(call crypto_confvar,$(mod))) + KCONFIG:=CONFIG_CRYPTO=y CONFIG_CRYPTO_HMAC $(foreach mod,$(CRYPTO_MODULES),$(call crypto_confvar,$(mod))) FILES:=$(foreach mod,$(CRYPTO_MODULES),$(call crypto_file,$(mod))) AUTOLOAD:=$(call AutoLoad,01,$(foreach mod,$(CRYPTO_MODULES),$(call crypto_name,$(mod)))) endef |