From: Jo-Philipp Wich Date: Thu, 14 Nov 2019 10:12:40 +0000 (+0100) Subject: luci-compat: network.lua: recognize wifi interfaces with nonstandard names X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5cb5ed38343310f0c628358603ff18f195eb09f6;p=project%2Fluci.git luci-compat: network.lua: recognize wifi interfaces with nonstandard names Ref: https://github.com/openwrt/luci/issues/3306 Signed-off-by: Jo-Philipp Wich (cherry picked from commit 857cd8c7fad3ef38680b2f8a2a7ada43a7892349) --- diff --git a/modules/luci-compat/luasrc/model/network.lua b/modules/luci-compat/luasrc/model/network.lua index c8b62f2902..1f761e315e 100644 --- a/modules/luci-compat/luasrc/model/network.lua +++ b/modules/luci-compat/luasrc/model/network.lua @@ -181,7 +181,7 @@ function _wifi_iface(x) return true end end - return false + return (nfs.access("/sys/class/net/%s/phy80211" % x) == true) end local function _wifi_iwinfo_by_ifname(ifname, force_phy_only)