2
0
forked from Ivasoft/openwrt

kernel: make most modules use AutoProbe

now that we have modprobe we can set more than half of the modules to AutoProbe

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 38021
This commit is contained in:
John Crispin
2013-09-17 21:45:17 +00:00
parent 022cadd64e
commit f12f4074af
21 changed files with 283 additions and 322 deletions

View File

@@ -27,7 +27,6 @@ define KernelPackage/crypto-core
CONFIG_CRYPTO_ALGAPI \
$(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))),1)
endef
$(eval $(call KernelPackage,crypto-core))
@@ -58,7 +57,6 @@ define KernelPackage/crypto-manager
CONFIG_CRYPTO_MANAGER \
$(foreach mod,$(CRYPTOMGR_MODULES),$(call crypto_confvar,$(mod)))
FILES:=$(foreach mod,$(CRYPTOMGR_MODULES),$(call crypto_file,$(mod)))
AUTOLOAD:=$(call AutoLoad,03,$(foreach mod,$(CRYPTOMGR_MODULES),$(call crypto_name,$(mod))))
$(call AddDepends/crypto)
endef
@@ -217,7 +215,7 @@ endef
define KernelPackage/crypto-aes/x86
FILES+=$(LINUX_DIR)/arch/x86/crypto/aes-i586.ko
AUTOLOAD:=$(call AutoLoad,09,aes_generic aes-i586)
AUTOLOAD:=$(call AutoLoad,09,aes-i586)
endef
$(eval $(call KernelPackage,crypto-aes))