From: Sven Roederer Date: Mon, 8 Jan 2018 20:02:54 +0000 (+0100) Subject: luci-mod-admin-full: Add 802.11b legacy_rates support X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=a6b41271b711b233e697bab65755d6b6653414c1;hp=63255ec38b2f5849fec9e54d3f3e2aa7ef76bd72;p=project%2Fluci.git luci-mod-admin-full: Add 802.11b legacy_rates support this was added to LEDE with ed62d91f4b5296a4aa883ce975d76f590ef4e910 and defaults to enable. Signed-off-by: Sven Roederer --- diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua index e8d43a1ba..094b415c4 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -228,6 +228,10 @@ if hwtype == "mac80211" then s:taboption("advanced", Value, "country", translate("Country Code"), translate("Use ISO/IEC 3166 alpha2 country codes.")) end + legacyrates = s:taboption("advanced", Flag, "legacy_rates", translate("802.11b rates")) + legacyrates.rmempty = false + legacyrates.default = "1" + s:taboption("advanced", Value, "distance", translate("Distance Optimization"), translate("Distance to farthest network member in meters."))