modules/admin-full: fix diversity setting for atheros cards
applications/olsr: fix enable/disable for olsrd plugins
This commit is contained in:
parent
f008ec70f9
commit
ae6c1f618f
2 changed files with 4 additions and 2 deletions
|
@ -26,6 +26,7 @@ if arg[1] then
|
||||||
ign = p:option(Flag, "ignore", "Enable")
|
ign = p:option(Flag, "ignore", "Enable")
|
||||||
ign.enabled = "0"
|
ign.enabled = "0"
|
||||||
ign.disabled = "1"
|
ign.disabled = "1"
|
||||||
|
ign.rmempty = false
|
||||||
function ign.cfgvalue(self, section)
|
function ign.cfgvalue(self, section)
|
||||||
return Flag.cfgvalue(self, section) or "0"
|
return Flag.cfgvalue(self, section) or "0"
|
||||||
end
|
end
|
||||||
|
@ -232,6 +233,7 @@ else
|
||||||
ign = t:option( Flag, "ignore", "Enabled" )
|
ign = t:option( Flag, "ignore", "Enabled" )
|
||||||
ign.enabled = "0"
|
ign.enabled = "0"
|
||||||
ign.disabled = "1"
|
ign.disabled = "1"
|
||||||
|
ign.rmempty = false
|
||||||
function ign.cfgvalue(self, section)
|
function ign.cfgvalue(self, section)
|
||||||
return Flag.cfgvalue(self, section) or "0"
|
return Flag.cfgvalue(self, section) or "0"
|
||||||
end
|
end
|
||||||
|
|
|
@ -72,7 +72,7 @@ if hwtype == "atheros" then
|
||||||
mode:value("11adt", "802.11adt")
|
mode:value("11adt", "802.11adt")
|
||||||
mode:value("fh", translate("wifi_fh"))
|
mode:value("fh", translate("wifi_fh"))
|
||||||
|
|
||||||
s:option(Flag, "diversity", translate("wifi_diversity"))
|
s:option(Flag, "diversity", translate("wifi_diversity")).rmempty = false
|
||||||
|
|
||||||
if not nsantenna then
|
if not nsantenna then
|
||||||
s:option(Value, "txantenna", translate("wifi_txantenna")).optional = true
|
s:option(Value, "txantenna", translate("wifi_txantenna")).optional = true
|
||||||
|
|
Loading…
Reference in a new issue