diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-02-28 18:57:31 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2017-02-28 18:57:31 +0200 |
commit | 04cf8763cc6c19ea419cfd34a913770f27798f90 (patch) | |
tree | 76a4141ba9ccf902e071d78efc94bb2f2463a45f /applications/luci-app-meshwizard/luasrc | |
parent | 7ab9b5a7144d2e5bbf5ab6f550cd89cb377075a6 (diff) |
meshwizard: cleanup references to madwifi
Remove the code related to the deprecated madwifi driver.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'applications/luci-app-meshwizard/luasrc')
-rw-r--r-- | applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua b/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua index 68f7a5a25..62ce25eff 100644 --- a/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua +++ b/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua @@ -103,10 +103,7 @@ uci:foreach("wireless", "wifi-device", function(section) -- Channel selection - if hwtype == "atheros" then - local cc = util.trim(sys.exec("grep -i '" .. syscc .. "' /lib/wifi/cc_translate.txt |cut -d ' ' -f 2")) or 0 - sys.exec('"echo " .. cc .. " > /proc/sys/dev/" .. device .. "/countrycode"') - elseif hwtype == "mac80211" then + if hwtype == "mac80211" then sys.exec("iw reg set " .. syscc) elseif hwtype == "broadcom" then sys.exec ("wlc country " .. syscc) |