Repository : ssh://git@open-mesh.org/openwrt-feed-devel
On branch : master
commit 606e82071b18e638322437bed3f9de532943178e Author: Sven Eckelmann sven@narfation.org Date: Tue Jun 5 14:28:39 2018 +0200
batman-adv-devel: Load module with AutoProbe
cfg80211 is loaded by kmodloader after the modules with a priority (AutoLoad) are loaded. batman-adv should therefore also be loaded at that time and must not load cfg80211 itself. The information in the ELF header are enough for kmodloader to load these two modules in the correct order.
Signed-off-by: Sven Eckelmann sven@narfation.org
606e82071b18e638322437bed3f9de532943178e batman-adv-devel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/batman-adv-devel/Makefile b/batman-adv-devel/Makefile index c7959fd..5faf275 100644 --- a/batman-adv-devel/Makefile +++ b/batman-adv-devel/Makefile @@ -30,7 +30,7 @@ define KernelPackage/batman-adv-devel DEPENDS:=+KMOD_BATMAN_ADV_DEVEL_BLA:kmod-lib-crc16 +kmod-crypto-crc32c +kmod-lib-crc32c +kmod-cfg80211 TITLE:=B.A.T.M.A.N. Adv devel FILES:=$(PKG_BUILD_DIR)/net/batman-adv/batman-adv.$(LINUX_KMOD_SUFFIX) - AUTOLOAD:=$(call AutoLoad,50,cfg80211 batman-adv) + AUTOLOAD:=$(call AutoProbe,batman-adv) endef
define KernelPackage/batman-adv-devel/description