diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-10-13 12:22:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-10-13 12:22:48 +0000 |
commit | b7204be37b0087fb0c6134f44c63d52459cc103e (patch) | |
tree | c147606fec7e14191b02748c44003e2d10219c1a /package/mac80211/files | |
parent | 6144179d612a4b1e127f30db8f2817c6e5f6712b (diff) | |
download | upstream-b7204be37b0087fb0c6134f44c63d52459cc103e.tar.gz upstream-b7204be37b0087fb0c6134f44c63d52459cc103e.tar.bz2 upstream-b7204be37b0087fb0c6134f44c63d52459cc103e.zip |
wifi: change the default channel from 5 to 11, 5 was a really bad choice
SVN-Revision: 23423
Diffstat (limited to 'package/mac80211/files')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index f022e262d9..a00cdee1be 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -404,7 +404,7 @@ detect_mac80211() { mode_11n="" mode_band="g" - channel="5" + channel="11" ht_cap=0 for cap in $(iw phy "$dev" info | grep 'Capabilities:' | cut -d: -f2); do ht_cap="$(($ht_cap | $cap))" |