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.
SVN-Revision: 15015
This commit is contained in:
parent
de1cbfd093
commit
88644c048c
1 changed files with 1 additions and 2 deletions
|
@ -38,7 +38,6 @@ CRYPTO_MODULES = \
|
||||||
HASH=crypto_hash \
|
HASH=crypto_hash \
|
||||||
CBC=cbc \
|
CBC=cbc \
|
||||||
ECB=ecb \
|
ECB=ecb \
|
||||||
HMAC=hmac \
|
|
||||||
DEFLATE=deflate
|
DEFLATE=deflate
|
||||||
|
|
||||||
crypto_confvar=CONFIG_CRYPTO_$(word 1,$(subst =,$(space),$(1)))
|
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
|
define KernelPackage/crypto-core
|
||||||
SUBMENU:=$(CRYPTO_MENU)
|
SUBMENU:=$(CRYPTO_MENU)
|
||||||
TITLE:=Core CryptoAPI modules
|
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)))
|
FILES:=$(foreach mod,$(CRYPTO_MODULES),$(call crypto_file,$(mod)))
|
||||||
AUTOLOAD:=$(call AutoLoad,01,$(foreach mod,$(CRYPTO_MODULES),$(call crypto_name,$(mod))))
|
AUTOLOAD:=$(call AutoLoad,01,$(foreach mod,$(CRYPTO_MODULES),$(call crypto_name,$(mod))))
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in a new issue