modules/admin-*: Added hints for Wifi Channels
authorSteven Barth <steven@midlink.org>
Tue, 19 Aug 2008 18:20:57 +0000 (18:20 +0000)
committerSteven Barth <steven@midlink.org>
Tue, 19 Aug 2008 18:20:57 +0000 (18:20 +0000)
modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua
modules/admin-mini/luasrc/model/cbi/mini/wifi.lua

index 3717c5b5b79fdbe44e754ff009a91cf01449a78c..e53fb14fd32722a6e7a8790d1c6eb7eea31eda2b 100644 (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
 
index c293175b6ff2cb8f33fc91e93a04895630bc14e7..95407be85ffb0443b5df402af0c8f4a7531ea792 100644 (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"))