Browse Source

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

SVN-Revision: 23423
Felix Fietkau 15 years ago
parent
commit
b7204be37b

+ 1 - 1
package/acx/files/lib/wifi/acx.sh

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

+ 1 - 1
package/broadcom-wl/files/lib/wifi/broadcom.sh

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

+ 1 - 1
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))"