diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-25 15:54:13 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-25 15:54:13 +0000 |
commit | fe9634bd9652c00c2dd5be170dd2eb45b62fe503 (patch) | |
tree | bd2865a1be4f57486edaae85e10b56b816f553a9 | |
parent | 3058e8b6a2f9863fe174786d4681e0be9a636090 (diff) |
[package] add a workaround for devices that only start beaconing after scanning, that is almost every driver except b43
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15041 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 77c7976351..47be5807ba 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -174,6 +174,7 @@ enable_mac80211() { # special case where physical interface should be down for mesh to work ifconfig "$ifname" down ifconfig "msh$mesh_idx" up + iwlist msh$mesh_idx scan 2>/dev/null >/dev/null ;; esac first=0 |