diff options
| author | Sean Khan | 2025-02-19 05:48:57 +0000 |
|---|---|---|
| committer | John Crispin | 2025-02-19 07:07:20 +0000 |
| commit | c840629046348d72ff7609433e5e228abb737797 (patch) | |
| tree | a1200b4c772085afb2b1ef51475a506871bed864 | |
| parent | 15013e87cb5415b7462523a2d87e833f3f56995f (diff) | |
| download | openwrt-c840629046348d72ff7609433e5e228abb737797.tar.gz | |
wifi-scripts: iwinfo: add definition for QCA9984
Fixes iwinfo output for QCA9984 devices.
Before:
```
Hardware: nl80211 [Generic MAC80211]
```
After:
```
Hardware: 0x168c:0x0046 0x168c:0xcafe [Qualcomm, Atheros QCA9984]
```
Signed-off-by: Sean Khan <datapronix@protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/18028
Signed-off-by: John Crispin <john@phrozen.org>
| -rw-r--r-- | package/network/config/wifi-scripts/files-ucode/usr/share/wifi_devices.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/config/wifi-scripts/files-ucode/usr/share/wifi_devices.json b/package/network/config/wifi-scripts/files-ucode/usr/share/wifi_devices.json index 5a38ca4b2f..29dbcef246 100644 --- a/package/network/config/wifi-scripts/files-ucode/usr/share/wifi_devices.json +++ b/package/network/config/wifi-scripts/files-ucode/usr/share/wifi_devices.json @@ -164,6 +164,7 @@ [ "0x168c", "0x003c", "0x19b6", "0xd03c", 0, 0, "Mikrotik", "R11e-5HacT" ], [ "0x168c", "0x003c", "0x19b6", "0xd075", 0, 0, "Mikrotik", "R11e-5HacD" ], [ "0x168c", "0x003e", "0x168c", "0x3361", 0, 0, "Qualcomm, Atheros", "QCA6174" ], + [ "0x168c", "0x0046", "0x168c", "0xcafe", 0, 0, "Qualcomm, Atheros", "QCA9984" ], [ "0x168c", "0x0040", "0x168c", "0x0002", 0, 0, "Qualcomm, Atheros", "QCA9990" ], [ "0x168c", "0x0046", "0x0777", "0xe535", 0, 0, "Qualcomm, Atheros", "QCA9994" ], [ "0x168c", "0x0046", "0x0777", "0xe5a2", 0, 0, "Qualcomm, Atheros", "QCA9994" ], |