modules/admin-*: Added hints for Wifi Channels

This commit is contained in:
Steven Barth 2008-08-19 18:20:57 +00:00
parent 6805eabaaa
commit 4db2139116
2 changed files with 18 additions and 3 deletions

View file

@ -37,7 +37,20 @@ mode:value("11a", "802.11a")
mode:value("11bg", "802.11b+g")
mode.rmempty = true
s:option(Value, "channel", translate("a_w_channel"))
ch = s:option(Value, "channel", translate("a_w_channel"))
for i=1, 14 do
ch:value(i, i .. " (2.4 GHz)")
end
for i=36, 64, 4 do
ch:value(i, i .. " (5 GHz)")
end
for i=100, 140, 4 do
ch:value(i, i .. " (5 GHz)")
end
ch:value(147, 147 .. " (5 GHz)")
ch:value(151, 151 .. " (5 GHz)")
ch:value(155, 155 .. " (5 GHz)")
ch:value(167, 167 .. " (5 GHz)")
s:option(Value, "txantenna", translate("a_w_txantenna")).optional = true

View file

@ -136,8 +136,10 @@ mode:value("11a", "802.11a")
mode:value("11bg", "802.11b+g")
mode.rmempty = true
s:option(Value, "channel", translate("a_w_channel"))
ch = s:option(Value, "channel", translate("a_w_channel"))
for i=1, 14 do
ch:value(i, i .. " (2.4 GHz)")
end
s = m:section(TypedSection, "wifi-iface", translate("m_n_local"))