diff options
author | Michael Büsch <mb@bu3sch.de> | 2008-02-17 13:29:22 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2008-02-17 13:29:22 +0000 |
commit | 70a2d7f1b11c93da21829410fb707705e27b8e30 (patch) | |
tree | 741663229bb0688f4e9b51f9139e62ab1b8a75fd /package/mac80211/files/lib/wifi | |
parent | ceae1c70e345d192cd7eb5d876865bba64282ad5 (diff) | |
download | upstream-70a2d7f1b11c93da21829410fb707705e27b8e30.tar.gz upstream-70a2d7f1b11c93da21829410fb707705e27b8e30.tar.bz2 upstream-70a2d7f1b11c93da21829410fb707705e27b8e30.zip |
mac80211 wifi script: Tell hostapd to use the nl80211 driver.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10477 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/files/lib/wifi')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 39a7034abd..58fa1be492 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -29,7 +29,7 @@ disable_mac80211() ( set_wifi_down "$device" # kill all running hostapd and wpa_supplicant processes that - # are running on atheros vifs + # are running on atheros/mac80211 vifs for pid in `pidof hostapd wpa_supplicant`; do grep wlan /proc/$pid/cmdline >/dev/null && \ kill $pid @@ -131,8 +131,8 @@ enable_mac80211() { case "$mode" in ap) if eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then - hostapd_setup_vif "$vif" devicescape || { - echo "enable_atheros($device): Failed to set up wpa for interface $ifname" >&2 + hostapd_setup_vif "$vif" nl80211 || { + echo "enable_mac80211($device): Failed to set up wpa for interface $ifname" >&2 # make sure this wifi interface won't accidentally stay open without encryption ifconfig "$ifname" down continue |