Author: jogo Date: 2014-12-11 20:35:36 +0100 (Thu, 11 Dec 2014) New Revision: 43631
Modified: trunk/package/kernel/acx-mac80211/Makefile Log: kernel/acx-mac80211: fix autoloading on boot The kernel build system cannot track dependencies of out-of-tree modules, making the buildsystem fail to load mac80211. Add mac80211 as an explicit load to ensure all required modules are loaded. Fixes #16522. Signed-off-by: Jonas Gorski <[email protected]> Modified: trunk/package/kernel/acx-mac80211/Makefile =================================================================== --- trunk/package/kernel/acx-mac80211/Makefile 2014-12-11 18:58:12 UTC (rev 43630) +++ trunk/package/kernel/acx-mac80211/Makefile 2014-12-11 19:35:36 UTC (rev 43631) @@ -32,7 +32,7 @@ TITLE:=ACX1xx mac80211 driver DEPENDS:=@(PCI_SUPPORT||TARGET_ar7) @mipsel +kmod-mac80211 FILES:=$(PKG_BUILD_DIR)/acx-mac80211.ko - AUTOLOAD:=$(call AutoLoad,50,acx-mac80211) + AUTOLOAD:=$(call AutoLoad,50,mac80211 acx-mac80211) MAINTAINER:=Florian Fainelli <[email protected]> MENU:=1 endef _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
