modules/admin-full: only offer hwmodes actually supported by the wiphy
This commit is contained in:
parent
5039b43e95
commit
96ec7d4d61
1 changed files with 13 additions and 12 deletions
|
@ -59,7 +59,8 @@ m.title = ww:get_i18n(wnet)
|
||||||
|
|
||||||
|
|
||||||
local iw = luci.sys.wifi.getiwinfo(arg[1])
|
local iw = luci.sys.wifi.getiwinfo(arg[1])
|
||||||
local tx_powers = iw.txpwrlist or { }
|
local tx_powers = iw.txpwrlist or { }
|
||||||
|
local hw_modes = iw.hwmodelist or { }
|
||||||
|
|
||||||
|
|
||||||
s = m:section(NamedSection, arg[1], "wifi-device", translate("Device Configuration"))
|
s = m:section(NamedSection, arg[1], "wifi-device", translate("Device Configuration"))
|
||||||
|
@ -119,13 +120,13 @@ if hwtype == "mac80211" then
|
||||||
|
|
||||||
mode = s:taboption("advanced", ListValue, "hwmode", translate("Mode"))
|
mode = s:taboption("advanced", ListValue, "hwmode", translate("Mode"))
|
||||||
mode:value("", translate("auto"))
|
mode:value("", translate("auto"))
|
||||||
mode:value("11b", "802.11b")
|
if hw_modes.b then mode:value("11b", "802.11b") end
|
||||||
mode:value("11g", "802.11g")
|
if hw_modes.g then mode:value("11g", "802.11g") end
|
||||||
mode:value("11a", "802.11a")
|
if hw_modes.a then mode:value("11a", "802.11a") end
|
||||||
|
|
||||||
if htcaps then
|
if htcaps then
|
||||||
mode:value("11ng", "802.11g+n")
|
if hw_modes.g and hw_modes.n then mode:value("11ng", "802.11g+n") end
|
||||||
mode:value("11na", "802.11a+n")
|
if hw_modes.a and hw_modes.n then mode:value("11na", "802.11a+n") end
|
||||||
|
|
||||||
htmode = s:taboption("advanced", ListValue, "htmode", translate("HT mode"))
|
htmode = s:taboption("advanced", ListValue, "htmode", translate("HT mode"))
|
||||||
htmode:depends("hwmode", "11na")
|
htmode:depends("hwmode", "11na")
|
||||||
|
@ -169,12 +170,12 @@ if hwtype == "atheros" then
|
||||||
|
|
||||||
mode = s:taboption("advanced", ListValue, "hwmode", translate("Mode"))
|
mode = s:taboption("advanced", ListValue, "hwmode", translate("Mode"))
|
||||||
mode:value("", translate("auto"))
|
mode:value("", translate("auto"))
|
||||||
mode:value("11b", "802.11b")
|
if hw_modes.b then mode:value("11b", "802.11b") end
|
||||||
mode:value("11g", "802.11g")
|
if hw_modes.g then mode:value("11g", "802.11g") end
|
||||||
mode:value("11a", "802.11a")
|
if hw_modes.a then mode:value("11a", "802.11a") end
|
||||||
mode:value("11bg", "802.11b+g")
|
if hw_modes.g then mode:value("11bg", "802.11b+g") end
|
||||||
mode:value("11gst", "802.11g + Turbo")
|
if hw_modes.g then mode:value("11gst", "802.11g + Turbo") end
|
||||||
mode:value("11ast", "802.11a + Turbo")
|
if hw_modes.a then mode:value("11ast", "802.11a + Turbo") end
|
||||||
mode:value("fh", translate("Frequency Hopping"))
|
mode:value("fh", translate("Frequency Hopping"))
|
||||||
|
|
||||||
s:taboption("advanced", Flag, "diversity", translate("Diversity")).rmempty = false
|
s:taboption("advanced", Flag, "diversity", translate("Diversity")).rmempty = false
|
||||||
|
|
Loading…
Reference in a new issue