From: nbd Date: Fri, 2 Oct 2009 19:41:04 +0000 (+0000) Subject: mac80211: autodetect the default phy mode based on 11n and freq capabilities X-Git-Tag: fast2504n-3.10.28-merged~14474 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=fcd449b084a1759e37ecf6c28fc4a384eeef689e;p=openwrt.git mac80211: autodetect the default phy mode based on 11n and freq capabilities git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17825 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 3acb3dc1cc..a7b3005dd9 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -272,12 +272,17 @@ detect_mac80211() { [ -n "$type" ] || break devidx=$(($devidx + 1)) done + mode_11n="" + mode_band="g" + iw phy "$dev" info | grep -q 'HT cap' && mode_11n="n" + iw phy "$dev" info | grep -q '2412 MHz' || mode_band="a" cat <