diff options
author | Anton Engelhardt <anton@neednow.de> | 2017-08-09 18:52:50 +0200 |
---|---|---|
committer | Anton Engelhardt <anton@neednow.de> | 2017-08-09 18:52:50 +0200 |
commit | e38a03f1e35d2521d22fd4f5b92b7c677d0b5bdf (patch) | |
tree | 7f93f32315539bebdbc667c109571ae0a26efd68 /modules/luci-mod-admin-full | |
parent | bbcf73f9bf5b5dbbf3eba44ced77c019a0ce0be6 (diff) |
[PATCH] luci-mod-admin-full: 802.11r AP-WDS mode enable
Made 802.11r selection availible in AP-WDS mode
Signed-off-by: Anton Engelhardt anton@neednow.de
Diffstat (limited to 'modules/luci-mod-admin-full')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua | 3 |
1 files changed, 3 insertions, 0 deletions
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 e1e21bcb5..51913729d 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 @@ -769,6 +769,9 @@ if hwtype == "mac80211" or hwtype == "prism2" then ieee80211r:depends({mode="ap", encryption="psk"}) ieee80211r:depends({mode="ap", encryption="psk2"}) ieee80211r:depends({mode="ap", encryption="psk-mixed"}) + ieee80211r:depends({mode="ap-wds", encryption="psk"}) + ieee80211r:depends({mode="ap-wds", encryption="psk2"}) + ieee80211r:depends({mode="ap-wds", encryption="psk-mixed"}) end ieee80211r.rmempty = true |