1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 03:29:29 +03:00

wifi: change the default channel from 5 to 11, 5 was a really bad choice

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23423 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2010-10-13 12:22:48 +00:00
parent 28ea12b3b3
commit 5067696d5e
3 changed files with 3 additions and 3 deletions

View File

@ -185,7 +185,7 @@ detect_acx() {
cat <<EOF
config wifi-device $dev
option type acx
option channel 5
option channel 11
# REMOVE THIS LINE TO ENABLE WIFI:
option disabled 1

View File

@ -363,7 +363,7 @@ detect_broadcom() {
cat <<EOF
config wifi-device wl${i}
option type broadcom
option channel 5
option channel 11
# REMOVE THIS LINE TO ENABLE WIFI:
option disabled 1

View File

@ -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))"