mac80211: create channel list for fixed channel operation
authorDavid Bauer <mail@david-bauer.net>
Mon, 20 Jul 2020 13:07:47 +0000 (15:07 +0200)
committerDavid Bauer <mail@david-bauer.net>
Mon, 20 Jul 2020 13:07:47 +0000 (15:07 +0200)
Currently a device which has a DFS channel selected using the UCI
channel setting might switch to a non-DFS channel in case no chanlist is
provided (UCI setting "channels") when the radio detects a DFS event.

Automatically add a chanlist consisting of the configured channel when
the device does not operate in auto-channel mode and no chanlist set to
circumvent this issue.

Signed-off-by: David Bauer <mail@david-bauer.net>
package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh

index a131992f2654f0389f918e27736a52c4e896a34f..5214704830ff0bb8c99cdcb2158c1e576eed84ef 100644 (file)
@@ -110,6 +110,9 @@ mac80211_hostapd_setup_base() {
        json_get_values ht_capab_list ht_capab tx_burst
        json_get_values channel_list channels
 
+       [ "$auto_channel" = 0 ] && [ -z "$channel_list" ] && \
+               channel_list="$channel"
+
        set_default noscan 0
 
        [ "$noscan" -gt 0 ] && hostapd_noscan=1