From 2e03c7d53e84e5e8c964914b78fe4b429563655e Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 19 Dec 2024 06:44:30 +0100 Subject: [PATCH] wifi-scripts: fix phy index lookup in device_capabilities For renamed phys, the index cannot be derived from the name Signed-off-by: Felix Fietkau --- .../wifi-scripts/files-ucode/usr/share/ucode/wifi/hostapd.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/wifi/hostapd.uc b/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/wifi/hostapd.uc index f95f01e846..adbfc1b978 100644 --- a/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/wifi/hostapd.uc +++ b/package/network/config/wifi-scripts/files-ucode/usr/share/ucode/wifi/hostapd.uc @@ -437,7 +437,7 @@ function device_extended_features(data, flag) { } function device_capabilities(phy) { - let idx = +substr(phy, 3, 1);; + let idx = +fs.readfile(`/sys/class/ieee80211/${phy}/index`); phy = nl80211.request(nl80211.const.NL80211_CMD_GET_WIPHY, nl80211.const.NLM_F_DUMP, { wiphy: idx, split_wiphy_dump: true }); if (!phy) return; -- 2.30.2