diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-11-09 00:58:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-11-09 00:58:39 +0000 |
commit | 498483be78ae4dee93e60734567a175ba000d819 (patch) | |
tree | ae68475bd4c9201fa4b6eb300bef569a5756dfd8 /package | |
parent | 149edf50d663432721ac09feb1f31418aa609022 (diff) | |
download | upstream-498483be78ae4dee93e60734567a175ba000d819.tar.gz upstream-498483be78ae4dee93e60734567a175ba000d819.tar.bz2 upstream-498483be78ae4dee93e60734567a175ba000d819.zip |
mac80211: fix wifi detect with 11n cards that have multiple bands
SVN-Revision: 18351
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index bae9fb6d78..5af7a9a26c 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -293,9 +293,12 @@ detect_mac80211() { done mode_11n="" mode_band="g" - ht_cap="$(iw phy "$dev" info | grep 'HT capabilities' | cut -d: -f2)" + ht_cap=0 + for cap in $(iw phy "$dev" info | grep 'HT capabilities' | cut -d: -f2); do + ht_cap="$(($ht_cap | $cap))" + done ht_capab=""; - [ -n "$ht_cap" ] && { + [ "$ht_cap" -gt 0 ] && { mode_11n="n" list=" list ht_capab" [ "$(($ht_cap & 2))" -eq 1 ] && append ht_capab "$list LDPC" "$N" |