diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-08-10 16:49:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 16:49:10 +0300 |
commit | afe2d2c18743b0f85efb030fb279c4e5ac169197 (patch) | |
tree | 7f93f32315539bebdbc667c109571ae0a26efd68 /modules | |
parent | bbcf73f9bf5b5dbbf3eba44ced77c019a0ce0be6 (diff) | |
parent | e38a03f1e35d2521d22fd4f5b92b7c677d0b5bdf (diff) |
Merge pull request #1292 from engelant/master
[PATCH] luci-mod-admin-full: 802.11r AP-WDS mode enable
Diffstat (limited to 'modules')
-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 e1e21bcb58..51913729dc 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 |