mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 08:21:14 +00:00
mac80211: fix not set noscan option for wpa_supplicant
noscan option was changed to hostapd_noscan but the entry in
wpa_supplicant was never updated resulting in the noscan option actually
never set.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
(cherry picked from commit 1070fbce6e
)
[ rework for openwrt-22.03 ]
This commit is contained in:
parent
bb2b55f376
commit
6e77f51b3a
@ -753,7 +753,7 @@ mac80211_setup_supplicant() {
|
|||||||
if [ "$mode" = "sta" ]; then
|
if [ "$mode" = "sta" ]; then
|
||||||
wpa_supplicant_add_network "$ifname"
|
wpa_supplicant_add_network "$ifname"
|
||||||
else
|
else
|
||||||
wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan"
|
wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$hostapd_noscan"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NEWSPLIST="${NEWSPLIST}$ifname "
|
NEWSPLIST="${NEWSPLIST}$ifname "
|
||||||
@ -783,7 +783,7 @@ mac80211_setup_supplicant_noctl() {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan"
|
wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$hostapd_noscan"
|
||||||
|
|
||||||
NEWSPLIST="${NEWSPLIST}$ifname "
|
NEWSPLIST="${NEWSPLIST}$ifname "
|
||||||
[ "$enable" = 0 ] && {
|
[ "$enable" = 0 ] && {
|
||||||
|
Loading…
Reference in New Issue
Block a user