diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-05-05 21:20:41 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2018-05-05 21:20:41 +0300 |
commit | 4edc9256fa2e7194a3b015dce2cd6dbb04eac0a6 (patch) | |
tree | ec9830f9b068889e7aebcb50c8e49865489c40ac /modules/luci-base/luasrc/model | |
parent | 6a1cdca34518fac1ca4ee2f77dad6ff60062bda5 (diff) |
luci-base: show wifi chip identification on overview
Show the correct wifi chip identification in case iwinfo
recognises the chip.
So far the wifidev.get_i18n function has practically always
returned just "Generic", but use iwinfo.hardware_name to
fetch the name.
In case iwinfo returns the default "Generic MAC80211", there
is a double 80211 in the final string, which is a cosmetic bug.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'modules/luci-base/luasrc/model')
-rw-r--r-- | modules/luci-base/luasrc/model/network.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua index dfe818bcc..0f58c1684 100644 --- a/modules/luci-base/luasrc/model/network.lua +++ b/modules/luci-base/luasrc/model/network.lua @@ -1428,7 +1428,7 @@ function wifidev.hwmodes(self) end function wifidev.get_i18n(self) - local t = "Generic" + local t = self.iwinfo.hardware_name or "Generic" if self.iwinfo.type == "wl" then t = "Broadcom" end |