diff options
author | Jonas Gorski <jogo@openwrt.org> | 2012-10-09 23:11:12 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2012-10-09 23:11:12 +0000 |
commit | c8203d57c54cdda5b49f23210478c4a3ee8d6bc2 (patch) | |
tree | 96335e5c7d6c86b799017b3d5327ec8c457f0d0f /package/mac80211/Makefile | |
parent | 6945d722e682c0a1e5986f8844ad4428c7f97aea (diff) | |
download | upstream-c8203d57c54cdda5b49f23210478c4a3ee8d6bc2.tar.gz upstream-c8203d57c54cdda5b49f23210478c4a3ee8d6bc2.tar.bz2 upstream-c8203d57c54cdda5b49f23210478c4a3ee8d6bc2.zip |
mac80211: fix intel wifi autoload module names
The autoload directives were using wrong module names, preventing
them from being automatically inserted at boot time.
SVN-Revision: 33676
Diffstat (limited to 'package/mac80211/Makefile')
-rw-r--r-- | package/mac80211/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index 6b99d5942d..bdea68e74b 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -636,7 +636,7 @@ define KernelPackage/iwlagn DEPENDS:= +kmod-mac80211 @PCI_SUPPORT TITLE:=Intel AGN Wireless support FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/iwlwifi/iwlwifi.ko - AUTOLOAD:=$(call AutoLoad,60,iwlagn) + AUTOLOAD:=$(call AutoLoad,60,iwlwifi) MENU:=1 endef @@ -712,7 +712,7 @@ define KernelPackage/iwl-legacy DEPENDS:= +kmod-mac80211 @PCI_SUPPORT TITLE:=Intel legacy Wireless support FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/iwlegacy/iwlegacy.ko - AUTOLOAD:=$(call AutoLoad,60,iwl-legacy) + AUTOLOAD:=$(call AutoLoad,60,iwlegacy) endef define KernelPackage/iwl-legacy/description |