mirror of
https://github.com/openwrt/openwrt.git
synced 2025-04-09 04:15:47 +00:00
mac80211: use first available channel from current phy if channel is set to "auto"
SVN-Revision: 27976
This commit is contained in:
parent
12c84f8eeb
commit
3aa922d33c
@ -17,7 +17,13 @@ mac80211_hostapd_setup_base() {
|
||||
config_get basic_rate_list "$device" basic_rate
|
||||
config_get_bool noscan "$device" noscan
|
||||
[ -n "$channel" -a -z "$hwmode" ] && wifi_fixup_hwmode "$device"
|
||||
[ "$channel" = auto ] && channel=
|
||||
|
||||
[ "$channel" = auto ] && {
|
||||
channel=$(iw phy "$phy" info | \
|
||||
sed -ne '/MHz/ { /disabled\|passive\|radar/d; s/.*\[//; s/\].*//; p; q }')
|
||||
config_set "$device" channel "$channel"
|
||||
}
|
||||
|
||||
[ -n "$hwmode" ] && {
|
||||
config_get hwmode_11n "$device" hwmode_11n
|
||||
[ -n "$hwmode_11n" ] && {
|
||||
|
Loading…
x
Reference in New Issue
Block a user