From: Andre Heider Date: Sat, 26 Nov 2022 12:25:42 +0000 (+0100) Subject: luci-base: add a hostapd 11ax feature flag X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=05f2901ffb4e4972999d9587a03e532863320f22;p=project%2Fluci.git 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 --- 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 };