From: Hannu Nyman Date: Sat, 2 Jan 2021 13:15:14 +0000 (+0200) Subject: luci-mod-network: modernize 802.11w help text X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e609ef0ef5de56919ec09fbe9bc740ee35797a09;p=project%2Fluci.git luci-mod-network: modernize 802.11w help text Modernize the 802.11w help text as support for 802.11w is currently always compiled into hostapd/wpad and most of the relevant wireless drivers support it well. Add a cautionary note that some drivers do not fully support it. Mention mwlwifi by name as it has several 802.11w bugs open in upstream and its development has stopped. Signed-off-by: Hannu Nyman --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 8c8564f1e1..9ef1e3cedd 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1613,7 +1613,7 @@ return view.extend({ if (hwtype == 'mac80211') { // ieee802.11w options - o = ss.taboption('encryption', form.ListValue, 'ieee80211w', _('802.11w Management Frame Protection'), _("Requires support from the wifi driver
(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)")); + o = ss.taboption('encryption', form.ListValue, 'ieee80211w', _('802.11w Management Frame Protection'), _("Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may have problems")); o.value('', _('Disabled')); o.value('1', _('Optional')); o.value('2', _('Required'));