From: Steven Barth Date: Thu, 26 Feb 2009 15:50:41 +0000 (+0000) Subject: Add GUI for 802.11s X-Git-Tag: 0.9.0~648 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=2b0c0485e8dcbd48437204edd732005e49339009;hp=ff2bc9081bb24e42dec9ccd46cdb4c377333dc59;ds=sidebyside Add GUI for 802.11s --- diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua index 7ba6dd260..43f0ab681 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -55,7 +55,6 @@ ch:value(167, 167 .. " (5 GHz)") s:option(Value, "txpower", translate("a_w_txpwr"), "dBm").rmempty = true - ------------------- MAC80211 Device ------------------ if hwtype == "mac80211" then @@ -165,6 +164,10 @@ bssid = s:option(Value, "bssid", translate("wifi_bssid")) -------------------- MAC80211 Interface ---------------------- if hwtype == "mac80211" then + if luci.fs.mtime("/usr/sbin/iw") then + mode:value("mesh", "802.11s") + end + mode:value("ahdemo", translate("a_w_ahdemo")) mode:value("monitor", translate("a_w_monitor")) bssid:depends({mode="adhoc"}) @@ -276,6 +279,7 @@ encr:depends({mode="sta"}) encr:depends({mode="adhoc"}) encr:depends({mode="ahdemo"}) encr:depends({mode="wds"}) +encr:depends({mode="mesh"}) encr:value("none", "No Encryption") encr:value("wep", "WEP")