From 0c3398c4b6d7ecf5d743e4c8bc84388f93cf222f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Fri, 10 Oct 2014 18:44:45 +0200 Subject: [PATCH] modules/admin-full: fix support for broadcom-wl modes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This adds N modes support for proprietary Broadcom WiFi driver and adds a/b/g modes detection. Signed-off-by: Álvaro Fernández Rojas --- .../luasrc/model/cbi/admin_network/wifi.lua | 23 ++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) 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 f6becf0f4..7d84d2961 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -353,10 +353,25 @@ if hwtype == "broadcom" then end mode = s:taboption("advanced", ListValue, "hwmode", translate("Mode")) - mode:value("11bg", "802.11b+g") - mode:value("11b", "802.11b") - mode:value("11g", "802.11g") - mode:value("11gst", "802.11g + Turbo") + if hw_modes.n then + if hw_modes.g then mode:value("11ng", "802.11g+n") end + if hw_modes.a then mode:value("11na", "802.11a+n") end + mode:value("11n", "802.11n") + + htmode = s:taboption("advanced", ListValue, "htmode", translate("HT mode (802.11n)")) + htmode:depends("hwmode", "11n") + htmode:depends("hwmode", "11ng") + htmode:depends("hwmode", "11na") + htmode:value("HT20", "20MHz") + htmode:value("HT40-", translate("40MHz 2nd channel below")) + htmode:value("HT40+", translate("40MHz 2nd channel above")) + end + if hw_modes.a then mode:value("11a", "802.11a") end + if hw_modes.b and hw_modes.g then mode:value("11bg", "802.11b+g") end + if hw_modes.b then mode:value("11b", "802.11b") end + if hw_modes.g then mode:value("11g", "802.11g") end + if hw_modes.g then mode:value("11gst", "802.11g Turbo") end + if hw_modes.g then mode:value("11lrs", "802.11g Limited Rate Support") end ant1 = s:taboption("advanced", ListValue, "txantenna", translate("Transmitter Antenna")) ant1.widget = "radio" -- 2.11.0