diff options
author | Andre Heider <a.heider@gmail.com> | 2022-11-26 13:10:39 +0100 |
---|---|---|
committer | Andre Heider <a.heider@gmail.com> | 2023-01-23 14:51:28 +0100 |
commit | 6914468e569b458ab0915482578375f884dd193e (patch) | |
tree | 0a17f22866a349db54b2265cbff5f03c29b09979 /modules/luci-base/root/usr/share | |
parent | d53ea72a88a2f9fb7ddee66eea562838f2d5c9f0 (diff) |
luci-base: remove the hostapd 11n feature flag
This feature flag doesn't exist anymore, see this commit on the main repo:
7c63295bf4 "treewide: remove DRIVER_11N_SUPPORT"
Signed-off-by: Andre Heider <a.heider@gmail.com>
Diffstat (limited to 'modules/luci-base/root/usr/share')
-rw-r--r-- | modules/luci-base/root/usr/share/rpcd/ucode/luci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/root/usr/share/rpcd/ucode/luci b/modules/luci-base/root/usr/share/rpcd/ucode/luci index a30e276b80..8b892dbb91 100644 --- a/modules/luci-base/root/usr/share/rpcd/ucode/luci +++ b/modules/luci-base/root/usr/share/rpcd/ucode/luci @@ -208,7 +208,7 @@ const methods = { relayd: access('/usr/sbin/relayd') == true, }; - const wifi_features = [ 'eap', '11n', '11ac', '11r', 'acs', 'sae', 'owe', 'suiteb192', 'wep', 'wps' ]; + const wifi_features = [ 'eap', '11ac', '11r', 'acs', 'sae', 'owe', 'suiteb192', 'wep', 'wps' ]; if (access('/usr/sbin/hostapd')) { result.hostapd = { cli: access('/usr/sbin/hostapd_cli') == true }; |