diff options
author | Andre Heider <a.heider@gmail.com> | 2022-11-26 13:25:42 +0100 |
---|---|---|
committer | Andre Heider <a.heider@gmail.com> | 2023-01-23 14:51:28 +0100 |
commit | 05f2901ffb4e4972999d9587a03e532863320f22 (patch) | |
tree | 65e95e66dc5e091bfc9cbe5d6376c8f545816b64 /modules/luci-base/root/usr/share | |
parent | 6914468e569b458ab0915482578375f884dd193e (diff) |
luci-base: add a hostapd 11ax feature flag
Required for luci to check if it can acually offer that mode.
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 8b892dbb91..f4d204cf22 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', '11ac', '11r', 'acs', 'sae', 'owe', 'suiteb192', 'wep', 'wps' ]; + const wifi_features = [ 'eap', '11ac', '11ax', '11r', 'acs', 'sae', 'owe', 'suiteb192', 'wep', 'wps' ]; if (access('/usr/sbin/hostapd')) { result.hostapd = { cli: access('/usr/sbin/hostapd_cli') == true }; |