jackcybertan
8304f3897b
ipq807x_v5.4/ipq50xx: When device is booting, it causes lan/wan ports bridge together
...
Fixes: WIFI-14849
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-10-24 07:57:21 +02:00
Shubham Vishwakarma
7beac05946
ipq807x: add support for indio um345ax
...
**SPECIFICATION:**
- Chipset: IPQ8072A+QCN5054+QCN5024+QCA80812
- Flash: NOR-8MB AND NAND-128MB
- Memory: 1Gb DDR
- IEEE 802.11: 802.11ax/ac/b/g/n
- 44 2.4G Wi-Fi standard 802.11b/g/n/ax
- 4*4 5.8G Wi-Fi Standard 802.11 a/n/ac/ax
- 2x 1 Gbps Ethernet (QCA8081) with 802.3at PoE input support
- 1x DC Port 12V 3A
- 4x Antenna IPEX Connector, 3dBi omni antennas
- Data Rate: 3657Mbps ( 2.4G: 1182Mbps (11ax 4x4); 5.8G: 2475Mbps (11ax 4x4))
- RF Power: 2.4g ≤ 20dBm; 5.8g ≤ 19dBm
- Max Power Consumption: ≤ 22W
**BACKUP YOUR STOCK FIRMWARE:**
- Put openwrt-*-initramfs-kernel.bin to your TFTP server and rename it to initramfs.bin
- Enable serial console and enter to u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:initramfs.bin
bootm
```
- Once boot completed and you get the openwrt shell execute below commands:
```
device=<divice_name>
mkdir -p /tmp/fw_backup; cd /tmp/fw_backup
rootfs=$(cat /proc/mtd | grep \"rootfs\" | cut -d: -f1)
rootfs_1=$(cat /proc/mtd | grep \"rootfs_1\" | cut -d: -f1)
dd if=/dev/${rootfs} of=rootfs_${rootfs} bs=1M
dd if=/dev/${rootfs_1} of=rootfs_1_${rootfs_1} bs=1M
cp /sys/firmware/fdt fdt.dtb
md5sum * > md5sum
tar -cvzf /tmp/${device}.tar.gz .
sum=$(md5sum /tmp/${device}.tar.gz | cut -d' ' -f1)
mv /tmp/${device}.tar.gz /tmp/${device}_${sum}.tar.gz
echo "stock fw backup saved to: /tmp/${device}_${sum}.tar.gz"
```
- Upload/save your backup to a safe place.
**STOCK FIRMWARE RECOVERY:**
- Boot initramfs image
- Upload your backed-up stock fw tarball to the device
using scp or download it from the device using wget.
- Enter device ssh cli or tty and exec:
```
cd /tmp && wget <your_web_server_ip>/${stock_fw_backup}.tar.gz`
tar -xpzf ${stock_fw_backup}.tar.gz
rootfs=$(cat /proc/mtd | grep \"rootfs\" | cut -d: -f1)
rootfs_1=$(cat /proc/mtd | grep \"rootfs_1\" | cut -d: -f1)
ubiformat /dev/${rootfs} -y -f /tmp/rootfs_${rootfs}
ubiformat /dev/${rootfs_1} -y -f /tmp/rootfs_1_${rootfs_1}
reboot
```
**INSTALLATION:**
1. initramfs method
- Put openwrt-*-initramfs-kernel.bin to your TFTP server and rename it to initramfs.bin
- Enable serial console and enter to u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:initramfs.bin
bootm
```
- Once boot completed and you get the openwrt shell execute below commands:
```
cd /tmp && wget <your_web_server_ip>/factory.ubi`
export rootfs=$(cat /proc/mtd | grep rootfs | cut -d: -f1)
export rootfs_1=$(cat /proc/mtd | grep rootfs_1 | cut -d: -f1)
ubiformat /dev/${rootfs} -y -f factory.ubi
ubiformat /dev/${rootfs_1} -y -f factory.ubi
reboot
```
2. u-boot nand-factory.bin image method
- Put openwrt-*-squashfs-nand-factory.bin to your TFTP server and enter u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:factory.bin
#After downloading is finished:
imxtract 0x44000000 ubi
flash rootfs
flash rootfs_1
reset
```
Signed-off-by: Shubham Vishwakarma <shubhamvis98@fossfrog.in >
2025-10-24 07:56:52 +02:00
Shubham Vishwakarma
4713ba9acb
ipq6018: add support for um-310ax-v1
...
**SPECIFICATIONS:**
SOC: Qualcomm IPQ6018 (64-bit quad-core ARM Cortex-A53 @ 1.8Ghz)
Flash: SPI NOR 8MB + NAND 128MB
Memory: 1GB
2.4GHz Frequency Band: 2.4GHz ~ 2.484GHz (802.11 b/g/n/ax)
5GHz Frequency Band: 5.150GHz~5.850GHz (802.11 a/n/ac/ax)
Wireless Speed: 2.4GHz: 574Mbps, 5GHz: 1201Mbps
**BACKUP YOUR STOCK FIRMWARE:**
- Put openwrt-*-initramfs-kernel.bin to your TFTP server and rename it to initramfs.bin
- Enable serial console and enter to u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:initramfs.bin
bootm
```
- Once boot completed and you get the openwrt shell execute below commands:
```
device=<device_name>
mkdir -p /tmp/fw_backup; cd /tmp/fw_backup
rootfs=$(cat /proc/mtd | grep \"rootfs\" | cut -d: -f1)
rootfs_1=$(cat /proc/mtd | grep \"rootfs_1\" | cut -d: -f1)
dd if=/dev/${rootfs} of=rootfs_${rootfs} bs=1M
dd if=/dev/${rootfs_1} of=rootfs_1_${rootfs_1} bs=1M
cp /sys/firmware/fdt fdt.dtb
md5sum * > md5sum
tar -cvzf /tmp/${device}.tar.gz .
sum=$(md5sum /tmp/${device}.tar.gz | cut -d' ' -f1)
mv /tmp/${device}.tar.gz /tmp/${device}_${sum}.tar.gz
echo "stock fw backup saved to: /tmp/${device}_${sum}.tar.gz"
```
- Upload/save your backup to a safe place.
**STOCK FIRMWARE RECOVERY:**
- Boot initramfs image
- Upload your backed-up stock fw tarball to the device
using scp or download it from the device using wget.
- Enter device ssh cli or tty and exec:
```
cd /tmp && wget <your_web_server_ip>/${stock_fw_backup}.tar.gz`
tar -xpzf ${stock_fw_backup}.tar.gz
rootfs=$(cat /proc/mtd | grep \"rootfs\" | cut -d: -f1)
rootfs_1=$(cat /proc/mtd | grep \"rootfs_1\" | cut -d: -f1)
ubiformat /dev/${rootfs} -y -f /tmp/rootfs_${rootfs}
ubiformat /dev/${rootfs_1} -y -f /tmp/rootfs_1_${rootfs_1}
reboot
```
**INSTALLATION:**
1. initramfs method
- Put openwrt-*-initramfs-kernel.bin to your TFTP server and rename it to initramfs.bin
- Enable serial console and enter to u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:initramfs.bin
bootm
```
- Once boot completed and you get the openwrt shell execute below commands:
```
cd /tmp && wget <your_web_server_ip>/factory.ubi`
export rootfs=$(cat /proc/mtd | grep rootfs | cut -d: -f1)
export rootfs_1=$(cat /proc/mtd | grep rootfs_1 | cut -d: -f1)
ubiformat /dev/${rootfs} -y -f factory.ubi
ubiformat /dev/${rootfs_1} -y -f factory.ubi
reboot
```
2. u-boot nand-factory.bin image method
- Put openwrt-*-squashfs-nand-factory.bin to your TFTP server and enter u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:factory.bin
#After downloading is finished:
imxtract 0x44000000 ubi
flash rootfs
flash rootfs_1
reset
```
Signed-off-by: Shubham Vishwakarma <shubhamvis98@fossfrog.in >
2025-10-24 07:56:52 +02:00
John Crispin
1a3955554a
ucentral-schema: update to latest HEAD
...
dc9cad9 Update state schema to add chanUtil field in radio
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-16 11:10:03 +02:00
John Crispin
427ad99151
ucentral-schema: update to latest HEAD
...
c836eb5 ssid: fix roaming defaults for PSK and RADIUS configurations
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-09 12:14:13 +02:00
John Crispin
02ed19e3ac
ucentral-event: fix VLAN bridge membership during FT roaming
...
During 802.11r Fast Transition roaming, when a client moves between
APs (e.g., wlan0 to wlan1) with the same dynamic VLAN assignment, the
vlan_add handler's refcount mechanism prevented the new WiFi interface
from being added to the bridge.
When wlan0-v100 and wlan1-v100 exist simultaneously with VLAN ID 100,
the refcount becomes 2, causing vlan_add to exit early for wlan1-v100.
This left wlan1-v100 out of the bridge VLAN table, breaking connectivity
after roaming despite correct VLAN assignment via RADIUS and RRB frames.
Fix by detecting WiFi VLAN interfaces (wlan*-v*) and always adding them
to the bridge regardless of refcount. The refcount mechanism now only
controls WAN port VLAN configuration, which should only occur once per
VLAN ID.
Also reorganise vlan_add/vlan_remove to check swconfig early for clarity.
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-09 12:14:13 +02:00
John Crispin
60968f8c89
profiles: fix syntax error / trailing spaces
...
Fixes: WIFI-15170
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-08 17:45:53 +02:00
John Crispin
207a592896
ucentral-client: set version to v4.1.1
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-07 11:31:11 +02:00
John Crispin
1bae90f681
ucentral-schema: set version to v4.1.1
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-07 11:30:57 +02:00
John Crispin
f2afe49977
ipq53xx: enable LED heartbeat trigger in kernel config
...
Enable CONFIG_LEDS_TRIGGER_HEARTBEAT to allow LED heartbeat
functionality when device goes offline. Without this kernel option,
the LED trigger mechanism was unavailable, preventing the LED from
flashing to indicate offline status.
Fixes: WIFI-14646
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-02 15:38:50 +02:00
Jimmy Cheng
04cc064026
ath12k-wifi: update NWA50BE BDF files
...
Adjust 2.4G CCA threshold from 32 to 38 to avoid false detection
Fixes: WIFI-15164
Signed-off-by: Jimmy Cheng <jimmy.cheng@zyxel.com.tw >
2025-10-02 07:43:18 +02:00
John Crispin
14778e1d2f
ucentral-event: add VLAN reference counting to prevent race condition
...
When a station roams between bands on the same VLAN, the vlan_remove
event from the old band can arrive after the vlan_add event from the
new band, causing the VLAN to be incorrectly deleted whilst still in use.
Add reference counting that tracks how many interfaces are using each
VLAN ID. Only create VLAN devices on the first reference and only
remove them when the last reference is dropped.
On startup, initialise refcounts from current station state to handle
daemon restarts correctly.
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-01 16:19:01 +02:00
John Crispin
9712ce581f
ucentral-schema: update to latest HEAD
...
676e155 dhcp_inject: fix a syntax issue in dhcp_inject
e594c44 captive.uam.mac-auth: the default was wrong
Signed-off-by: John Crispin <john@phrozen.org >
2025-10-01 16:19:01 +02:00
pratibha
a4dbeb376e
ipq50xx: Add support for Indio-525AXM outdoor AP
...
Fixes: WIFI-14454
Signed-off-by: pratibha <pratibha.kuril@indionetworks.com >
2025-10-01 16:19:01 +02:00
jackcybertan
02b0457b28
ipq53xx: fix RAP750W-311A LAN ports
...
LAN switch exposes single eth1 instead of per-port interfaces for RAP750W-311A.
Using VLAN to separate LAN to each physical port for RAP750W-311A.
Fixes: WIFI-15163
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-10-01 16:19:01 +02:00
Shubham Vishwakarma
42007a147f
update setup.py: make the profiles symlink relative instead of absolute
...
make openwrt/profiles relative so moving or renaming the repo directory won't break the symlink
Signed-off-by: Shubham Vishwakarma <shubhamvis98@fossfrog.in >
2025-10-01 07:44:35 +02:00
Shubham Vishwakarma
d1e18425b0
ramips: mt7621: update mt7621 indio um-305ax patch file
...
Changelog:
- Fix MAC address assignment for Ethernet ports
- Fix Ethernet port configuration (was not working in the current DTS
because GPIOs 23 and 24, used for LEDs, are RGMII2 pins)
- Add package kmod-7915-firmware to enable Wi-Fi
Signed-off-by: Shubham Vishwakarma <shubhamvis98@fossfrog.in >
2025-10-01 07:44:35 +02:00
Arif Alam
d98e18a143
wifi_max_user: read data from correct phy index for EAP112
...
Set max_ap_assoc at wiphy init instead of vif init for mt7915.
Hard code max_ap_assoc to 128 for EAP112 in wifi_max_user.uc
Fixes WIFI-15027
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2025-09-29 06:31:51 +02:00
Tanya Singh
fd170fabed
hostapd: initialize ht/vht/he mode on channel switch by default while using hostapd_cli chan_switch command
...
Fixes: WIFI-14859
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-09-25 11:01:52 +02:00
John Crispin
9b2d80f2b4
ucentral-schema: update to latest HEAD
...
100c045 Fix cloud cannot show association list when WDS-AP in state.uc
168f6a4 dhcp_inject: Support multiple upstream
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-24 13:10:36 +02:00
Sebastian Huang
5c892e7a0c
mediatek-sdk: Support AN8801SB PHY for EAP112
...
Signed-off-by: Sebastian Huang <sebastian_huang@accton.com >
2025-09-24 12:51:49 +02:00
Shubham Vishwakarma
6ed93db422
ipq5018: add support for indio um-335ax
...
**Specifications:**
SOC: Qualcomm IPQ5018 (64-bit dual-core ARM Cortex-A53 @ 1.0Ghz)
Flash: SPI NOR 8MB (Winbond W25Q64DW) + NAND 128MB (Winbond W25N01GWZEIG)
Memory: 512MB DDR3L
Standard: 802.11ax/ac/b/g/n
2.4G Frequency: 2.4GHz - 2.484GHz
2.4G Wi-Fi standard: 802.11b/g/n/ax
5G Chipset: QCN9074
5G Frequency: 5.150GHz~5.850GHz
5G Wi-Fi Standard: 802.11 a/n/ac/ax
Buttons: 1 * Reset button, press 10 seconds to revert to default setting
2.4G Antenna: 2*2.4GHz/5.8GHz dual band antenna: 4dBi
5G Antenna: 2*5.8G antenna: 4dBi
Data Rate: 2.4GHz: 574Mbps, 5GHz:4800Mbps
Power: PoE 802.3at,DC2.0 12V/2A
Max Power Consumption: < 22W
LED Light: WAN, LAN, tricolor LED(sys-red, 2.4G-green, 5.8G-blue)
**BACKUP YOUR STOCK FIRMWARE:**
- Put openwrt-*-initramfs-kernel.bin to your TFTP server and rename it to initramfs.bin
- Enable serial console and enter to u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:initramfs.bin
bootm
```
- Once boot completed and you get the openwrt shell execute below commands:
```
device=um335ax
mkdir -p /tmp/fw_backup; cd /tmp/fw_backup
rootfs=$(cat /proc/mtd | grep \"rootfs\" | cut -d: -f1)
rootfs_1=$(cat /proc/mtd | grep \"rootfs_1\" | cut -d: -f1)
dd if=/dev/${rootfs} of=rootfs_${rootfs} bs=1M
dd if=/dev/${rootfs_1} of=rootfs_1_${rootfs_1} bs=1M
cp /sys/firmware/fdt fdt.dtb
md5sum * > md5sum
tar -cvzf /tmp/${device}.tar.gz .
sum=$(md5sum /tmp/${device}.tar.gz | cut -d' ' -f1)
mv /tmp/${device}.tar.gz /tmp/${device}_${sum}.tar.gz
echo "stock fw backup saved to: /tmp/${device}_${sum}.tar.gz"
```
- Upload/save your backup to a safe place.
**STOCK FIRMWARE RECOVERY:**
- Boot initramfs image
- Upload your backed-up stock fw tarball to the device
using scp or download it from the device using wget.
- Enter device ssh cli or tty and exec:
```
cd /tmp && wget <your_web_server_ip>/${stock_fw_backup}.tar.gz`
tar -xpzf ${stock_fw_backup}.tar.gz
rootfs=$(cat /proc/mtd | grep \"rootfs\" | cut -d: -f1)
rootfs_1=$(cat /proc/mtd | grep \"rootfs_1\" | cut -d: -f1)
ubiformat /dev/${rootfs} -y -f /tmp/rootfs_${rootfs}
ubiformat /dev/${rootfs_1} -y -f /tmp/rootfs_1_${rootfs_1}
reboot
```
**INSTALLATION:**
1. initramfs method
- Put openwrt-*-initramfs-kernel.bin to your TFTP server and rename it to initramfs.bin
- Enable serial console and enter to u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:initramfs.bin
bootm
```
- Once boot completed and you get the openwrt shell execute below commands:
```
cd /tmp && wget <your_web_server_ip>/factory.ubi`
export rootfs=$(cat /proc/mtd | grep rootfs | cut -d: -f1)
export rootfs_1=$(cat /proc/mtd | grep rootfs_1 | cut -d: -f1)
ubiformat /dev/${rootfs} -y -f factory.ubi
ubiformat /dev/${rootfs_1} -y -f factory.ubi
reboot
```
2. u-boot nand-factory.bin image method
- Put openwrt-*-squashfs-nand-factory.bin to your TFTP server and enter u-boot cli and exec these commands:
```
tftpboot <your_tftp_server_ip>:factory.bin
#After downloading is finished:
imxtract 0x44000000 ubi
flash rootfs
flash rootfs_1
reset
```
Signed-off-by: Shubham Vishwakarma <shubhamvis98@fossfrog.in >
2025-09-24 12:51:18 +02:00
Jimmy Cheng
92d67c15dd
qca-ssdk: remove the unused patch of pinctrl
...
Signed-off-by: Jimmy Cheng <jimmy.cheng@zyxel.com.tw >
2025-09-24 12:50:29 +02:00
Marek Kwaczynski
460180f42e
cloud_discovery: add blocklist for discovery methods
...
Introduce a blocklist mechanism to avoid retrying failed discovery
methods within the same discovery cycle. Each time a method fails
validation, it is added to the blacklist. The blacklist is cleared
once the device transitions to ONLINE or after all discovery methods
have been attempted.
This prevents repeated attempts of failing methods and ensures the
discovery process progresses more reliably.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-09-24 12:48:50 +02:00
Marek Kwaczynski
ed57759824
cloud_discovery: Skip rewriting discovery.state.json when no discovery metho d is set
...
In cases where gateway.json exists, the discovery method may be unset.
Writing an empty value to discovery.state.json is not useful, so
avoid updating the file in this case.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-09-24 12:48:50 +02:00
Marek Kwaczynski
957e3ca997
cloud_discovery: run est_client enroll before discovery process
...
Always obtain EST certificates before starting the discovery process.
This ensures certificates are already available from the EST server, since
the FQDN may be provided via DHCP discovery or another discovery method,
and requires valid certificates to proceed.
Fixes: WIFI-15123
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-09-24 12:48:50 +02:00
John Crispin
7c2b8e8de0
ipq53xx: fix missing KERNEL_IPQ_MEM_PROFILE for multiple boards
...
Commit 2e4972e9ad ("ipq53xx: Add KERNEL_IPQ_MEM_PROFILE for IPQ53XX")
introduced KERNEL_IPQ_MEM_PROFILE but didn't set it for all IPQ53xx
boards, causing them to boot with incorrect RAM size settings.
This adds CONFIG_KERNEL_IPQ_MEM_PROFILE=0 to the affected board profiles:
- cig_wf189, cig_wf189h, cig_wf189w, cig_wf672
- edgecore_eap105
- sonicfi_rap7110c-341x
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-24 11:57:42 +02:00
wingate5678
741007178f
mount_certs: sonicfi squashfs certifiacte storage improve
...
Fixes: WIFI-15120
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-09-21 10:20:25 +02:00
Tanya Singh
e9d3e39d5e
netifd: support DHCP options 138 and 224
...
Fixes: WIFI-14694
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-09-21 10:20:25 +02:00
wingate5678
b82a2c5da1
qca-wifi-7: sonicfi wifi7 thermal setting
...
Fixes: WIFI-15138
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-09-21 10:20:25 +02:00
Kumiko18
15429f39d8
udhcpinject: Support multiple upstream
...
Support multiple ssid <-> upstream bindings
Fixes: WIFI-15125
Signed-off-by: Kumiko18 <alex18_huang@accton.com >
2025-09-21 10:20:25 +02:00
Justin.Guo
5df274325b
qca-wifi-7: Update WF672 FCC BDF
...
only support 2-band mode
Fixes: WIFI-15130
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-09-21 10:20:25 +02:00
jackcybertan
2e4972e9ad
ipq53xx: Add KERNEL_IPQ_MEM_PROFILE for IPQ53XX
...
Fixes: WIFI-15124
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-09-21 10:20:25 +02:00
John Crispin
a25480d479
hostapd: fix MAC overlap with MBSSID enabled
...
Reverse byte order in non-OUI part of MAC address to prevent overlap
when MBSSID is enabled. Swaps bytes 3 and 5 and masks lower nibble
of byte 5 before applying index XOR.
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-21 10:20:25 +02:00
Jimmy Cheng
2f625c35f0
zyxel_nwa130be: use LED of DTS instead of ssdk cmd
...
Signed-off-by: Jimmy Cheng <jimmy.cheng@zyxel.com.tw >
2025-09-12 08:16:16 +02:00
Jimmy Cheng
b5422f80e4
qca-wifi-7: Zyxel NWA130BE save crash log into pstore
...
Signed-off-by: Jimmy Cheng <jimmy.cheng@zyxel.com.tw >
2025-09-12 08:16:16 +02:00
YenLin Pan
1ed503613d
qca-wifi-7: Add Zyxel NWA50BE model
...
Signed-off-by: YenLin Pan <YenLin.Pan@zyxel.com.tw >
2025-09-12 08:16:16 +02:00
pratibha
f8954418f1
ipq50xx: Add support for Indio-525AXP wifi6 AP
...
Fixes: WIFI-14455
Signed-off-by: pratibha <pratibha.kuril@indionetworks.com >
2025-09-12 08:16:16 +02:00
John Crispin
3abc6a4463
ucentral-schema: update to latest HEAD
...
a1e7571 state: fix unassigned access
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-12 08:16:16 +02:00
pratibha
811b63de93
ipq50xx: Support for Indio UM-325AX-V2 WiFi6 Indoor AP
...
Fixes: WIFI-14493
Signed-off-by: pratibha <pratibha.kuril@indionetworks.com >
2025-09-07 10:14:05 +02:00
Justin.Guo
c66020fbc6
qca-wifi-7: WF-672A, AFC pending, enable only 2-band mode
...
Fixes: WIFI-15000
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-09-07 10:12:34 +02:00
jackcybertan
da7682166f
ipq807x_v5.4/ipq50xx: enable pstore for rap630c-311g/rap630w-311g/rap630w-312g mt7621: enable pstore for rap63xc-211g
...
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-09-07 10:12:09 +02:00
John Crispin
bd50dfdf96
udhnssnoop: move the code directly into the repo
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-07 10:05:15 +02:00
John Crispin
cbf0e536df
udevmand: move the code directly into the repo
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-07 10:04:06 +02:00
John Crispin
20a7a48c9f
ucentral-tools: the git repo is gone, move the code into the package
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-09-07 10:02:15 +02:00
Arif Alam
c27b015a63
est_client: fix certificate issuer matching
...
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2025-08-29 22:52:28 -04:00
Arif Alam
02c2e6945b
est_client: cloud_discovery: fixup demo environment
...
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2025-08-28 21:39:54 -04:00
Sebastian Huang
e7cd5038ac
mediatek-sdk: Disable surge protection mode for AN8801SB PHY driver
...
Signed-off-by: Sebastian Huang <sebastian_huang@accton.com >
2025-08-20 08:16:30 +02:00
Paul White
34e4a01e25
ucentral-state: Respect LED config before enabling
...
Ensure that LEDs are configured to be ON before attempting to change their state.
Previously, if the LED was configured to be OFF, it would still enter a double-blink
state when the cloud connection was lost, and then switch to solid ON upon
reconnection—ignoring the configured OFF state.
This update changes that behavior:
- If LEDs are configured OFF, they will remain OFF even during cloud
disconnection (no double-blink).
- After temporary state changes (e.g., during factory reset), the LED will
return to its configured state (either OFF or ON).
Signed-off-by: Paul White <paul@shasta.cloud >
2025-08-20 08:16:08 +02:00
Tanya Singh
60e9fb2645
cloud_discover: typo fix in DHCP script option 138
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-08-19 07:33:01 +02:00
John Crispin
b995833a03
cloud_discovery: fix typo
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-14 16:58:33 +02:00
John Crispin
9866d4a86e
cloud_discovery: update CDS QA endpoint
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-14 16:14:42 +02:00
John Crispin
143d4e3b58
cloud_discovery: make the reenrollment process more robust
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-14 11:44:04 +02:00
John Crispin
0735fd8c9a
elfutils: fix build with GCC11
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-14 10:31:04 +02:00
Tanya Singh
c7f9061eee
cloud_discovery: Fix typo in cloud_discovery script
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-08-14 07:57:59 +02:00
Paul White
f4a58c0989
qca-ssdk: Move MIB loop cnt variable to handle
...
The MIB loop cnt variable was defined as a static variable in the function that
implements the loop, however this function can be called for more than one switch
on some platforms. This results in a race condition that leads to memory
corruption and kernel crashes.
The fix moves the loop cnt variable to the passed in switch handle, this way
there is one per switch chip. Thix fix was identified by looking at newer
versions of the qca-ssdk software package from QCA.
Signed-off-by: Paul White <paul@shasta.cloud >
2025-08-13 14:39:38 +02:00
John Crispin
cd78a832e3
cloud_discovery: use production CDS for migration path
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-13 14:35:42 +02:00
Paul White
7b6fc736f6
base-files: boot: add sync after uci-defaults
...
A scenario was seen where UCI config was not flushed to disk before
an AP power-cycle after uci-defaults was completed. Since these
scripts are deleted after being ran once, there is no way to recover
without a factory reset.
Adding this sync operation proved to help avoid this situation from
happening
Signed-off-by: Paul White <paul@shasta.cloud >
2025-08-12 19:19:10 +02:00
John Crispin
f997f8dff0
tip-defaults: add operational OpenLan root CA
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-12 19:11:54 +02:00
John Crispin
c4b3eeed81
est_client: switch to production environment
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-11 06:36:22 +02:00
John Crispin
b2ba9d7c1b
ucentral-client: update to latest HEAD
...
549e84e ucentral-client: Add discovery metadata to connect payload
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-11 06:13:02 +02:00
Marek Kwaczynski
b982f3f4c2
cloud_discovery: Track and persist discovery method
...
Adds support for recording the method used to discover the cloud
controller (e.g. DHCP, FLASH, OpenLAN).
The selected method records the current date and time along
with the discovery method into "/etc/ucentral/discovery.state.json".
The date is stored in epoch format.
Fixed: WIFI-14966
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-08-11 05:41:36 +02:00
John Crispin
68dfd58303
wireless-regdb: disable channel 14 in JP
...
Fixes: WIFI-14962
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-07 14:51:33 +02:00
John Crispin
6ba26cba2b
est_client: add a function to validate that the CN is correct
...
cloud_discovery will not start if the CN does not match the devices serial.
an error will be written to syslog
---
Wed Aug 6 14:23:23 2025 user.notice root: ERROR
Wed Aug 6 14:23:23 2025 user.notice root: ERROR
Wed Aug 6 14:23:23 2025 user.notice root: ERROR
Wed Aug 6 14:23:23 2025 user.notice root: The certificate used has a CN that does not match the serial of the device
Wed Aug 6 14:23:23 2025 user.notice root: ERROR
Wed Aug 6 14:23:23 2025 user.notice root: ERROR
Wed Aug 6 14:23:23 2025 user.notice root: ERROR
---
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-06 16:23:57 +02:00
John Crispin
b5b276bfcc
est_client: check if a cert is present inside the fwtool helper
...
This was causing devices without a birt cert being present from doing a
sysupgrade.
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-06 11:03:59 +02:00
Tanya Singh
de7dc7e01a
ipq50xx: Fix bootbank switching when firmware upgrade is triggered for Edgecore EAP104 and OAP101 series
...
Fixes: WIFI-14957
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-08-06 10:54:55 +02:00
jackcybertan
a967d67af3
qca-wifi-7: Added ramoops support for SonicFi IPQ5332 devices
...
Fixes: WIFI-14869
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-08-06 10:53:52 +02:00
John Crispin
8a68073f4f
ucentral-schema: update to latest HEAD
...
remove a patch that was accidentally merged
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-04 16:33:15 +02:00
John Crispin
efd804987e
rtty: there was an error in the operationalpem passed to the client
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-04 15:44:21 +02:00
jackcybertan
b036ba37e3
certificates: Store-PKI2.0-key-for-RAP6x-production
...
Fixes: WIFI-14951
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-08-04 08:39:53 +02:00
John Crispin
7352de2421
update to latest HEAD
...
e27ecb4 ssid: decouple batman tunnel from meshpoint interfaces
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-04 08:36:13 +02:00
John Crispin
8c11eb23a3
mt7621: add insta1/2 partitions for yuncore ax820
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-08-04 08:35:42 +02:00
Tanya Singh
83874b75f3
mediatek-sdk: Remove extra lines (for logging) from 99-mtk-sr-scene-cond
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-08-04 08:08:24 +02:00
John Crispin
694cf6ded8
rtty: use the operational certificate
...
Fixes: WIFI-14943
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-31 17:50:14 +02:00
John Crispin
0a3a207584
uboot-envtools: add udaya-id5 support
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-31 14:54:56 +02:00
Tanya Singh
b0e95e68a2
afc: Use either ca-cert or access-token to get authorization in curl command for the AFC server
...
Fixes:WIFI-14427
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-31 10:03:02 +02:00
Tanya Singh
26ed5acb60
rrmd: update timeout for RRM during self-healing and fix center channel mapping in RRM with Channel Utilization
...
Fixes: WIFI-14901
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-31 10:02:27 +02:00
John Crispin
d1e4c48617
cloud_discovery: add automatic reenrolment of operational certificates
...
The daemon will check the vailidity of the operational certificate once and hour.
If the certificate is valid for less than three days, a reenrollment is attempted.
Once the reenroll happened the connection to the cloud controller will be restarted.
Fixes: WIFI-14900
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-31 09:48:10 +02:00
Tanya Singh
3a8fc316f2
qca-wifi-7/afc: Use curl instead of uclient to send/receive AFC request/response using hostapd
...
Fixes: WIFI-14427
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-30 09:34:26 +02:00
jackcybertan
d85dc2a819
certificates: Enhance PKI enrollment on squashfs (SonicFi RAP6* series)
...
The updated flow:
- Mount /dev/mtdblock* (the certificates partition) to /mnt
- Copy its contents to /certificates
- Unmount /mnt
- Extract the PKI 2.0 certificates into /certificates
Fixes: WIFI-14904
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-07-30 09:04:52 +02:00
John Crispin
acca9737e4
ucentral-schema: update to latest HEAD
...
30c7374 Add 'access-token' to AFC server config
Fixes: WIFI-14427
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-30 09:02:17 +02:00
Tanya Singh
6d2fd1de0d
afc: Use curl instead of uclient to send/receive AFC request/response using hostapd
...
Fixes: WIFI-14427
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-30 09:02:05 +02:00
John Crispin
1d822a10d2
toolchain: use gcc11 for legacy targets
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-28 09:51:18 +02:00
John Crispin
ebdc88ee1f
certificates: improvements
...
* make the code more generic
* add udaya a2 support
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-28 09:50:22 +02:00
John Crispin
778cc679a0
profiles: add more wifi-5 profiles
...
* edgecore_spw2ac1200
* hfcl_ion4
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-27 19:35:04 +02:00
YenLin Pan
088d78faa7
qca-ssdk: adjust the amplitude level of SGMII for Zyxel NWA130BE
...
To fix EMI and avoid Ethernet RX stuck after reboot for Zyxel NWA130BE.
Ethernet Rx stuck was sometimes happened when we do stress reboot,
need to adjust the amplitude level of SGMII for CPU and QCA8385 side.
And those settings come from the result that Zyxel HW team and Manufacturer
co-work to fine tune for NWA130BE.
Signed-off-by: YenLin Pan <YenLin.Pan@zyxel.com.tw >
2025-07-27 19:24:15 +02:00
Tanya Singh
5306f7db27
cloud_discovery: Add 'sync' after file generation in Cloud discovery process
...
Fixes: WIFI-14906
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-27 17:40:03 +02:00
Tanya Singh
c8bffdc250
rrmd: Add self-healing in ucentral-state and channel switching improvements to RRM with channel utilization
...
Fixes: WIFI-14901
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-27 17:39:21 +02:00
John Crispin
3a3de9e146
ucentral-schema: update to latest HEAD
...
92fb3c1 WIFI-14901: Add rrm_chanutil status to health.uc (when it fails) and save health metric in /tmp/ucentral.health
6313892 WIFI-14906: Add 'sync' after file generation in Cloud discovery process
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-27 17:03:48 +02:00
John Crispin
4d5c9a2d4c
ucentral-client: update to latest HEAD
...
c536f69 cloud package manager
Fixes: WIFI-14588
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-27 16:54:44 +02:00
John Crispin
41aa4c2978
cloud_discovery: set correct timeouts inside UCI
...
Fixes: WIFI-14897
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-27 16:35:15 +02:00
Marek Kwaczynski
7795c51947
netifd: add GCMP-256 support for WPA3 on 6 GHz bands
...
This patch enhances WPA3 encryption support in netifd by introducing GCMP-256
cipher handling for wireless interfaces operating on the 6 GHz band with HE/EHT
modes.
Fixes: WIFI-14594
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-07-24 14:45:26 +02:00
Justin.Guo
9e68fc6e66
ipq807x_v5.4/qca-wifi-7: Support dual BDF
...
Support dual BDF for WF186H/WF186W/WF189/WF189H/WF189W/WF672A
Fixes: WIFI-14890
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-07-24 13:34:27 +02:00
Jesse Wu
b60c244d93
qca-wifi-7: add support for EMPLUS WAP7635
...
Signed-off-by: Jesse Wu <Jesse.Wu@emplustech.com >
2025-07-24 13:32:21 +02:00
Ian Chen
ae1f394e28
mediatek-sdk: Support HaLow Mesh on EAP112
...
enable MESH function in feeds/morse/utils/wpa_supplicant_s1g/Config.in
ticket: WIFI-14896
Signed-off-by: Ian Chen <ian77_chen@accton.com >
2025-07-24 13:31:35 +02:00
John Crispin
d09126c674
ucentral-schema: updte to latest HEAD
...
b971b73 Support HaLow Mesh on EAP112
7d28320 Fix in ucode script of config_raw to add multiple UCI sections via config-raw object of the schema
1453f2e chanUtil per radio shall be obtained from the policy_chanutil.uc script
fa26853 enable multiple bssid by default on 6G
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-24 13:30:25 +02:00
Marek Kwaczynski
810bc501e1
ratelimit: fix rate limiting on WiFi-7 devices
...
Rate limiting was not applied on WiFi-7 devices because their
hostapd interface names use the phy* prefix instead of wlan*.
This patch extends the match pattern to include both wlan* and phy*.
Fixes: WIFI-14884
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-07-22 15:19:57 +02:00
John Crispin
3001fa88fb
include/download.mk: switch to using git:// instead of https://
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-21 13:28:00 +02:00
John Crispin
89a1be09d9
est_client: set 10s as the max timeout when calling the EST server
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-21 11:35:47 +02:00
CarosLiang
3cb1f9c4dd
ipq50xx: add smp-affinity for wf186h and wf186w
...
Fixes: WIFI-14873
Signed-off-by: CarosLiang <cliang@actiontec.com >
2025-07-21 11:06:19 +02:00
Tanya Singh
63ef3588ce
mediatek: Support RRM based on Channel Utilization for Edgecore EAP111 and EAP112
...
Fixes: WIFI-14837
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-21 11:05:27 +02:00
Arif Alam
bd97e5693e
mediatek-sdk: mt7981: enable ramoops / pstore
...
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2025-07-21 06:50:18 +02:00
John Crispin
b44147b162
target-ipq40xx: update/move feed to wlan-ap-legacy-targets
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-21 06:49:34 +02:00
John Crispin
69da9125c5
qca-wifi-7/hostapd: increase socket buffer sizes
...
Fixes: WIFI-14742
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-18 10:04:50 +02:00
John Crispin
66df8d3946
est_client: properly populate the re-enrolled certificate
...
Fixes: WIFI-14864
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 14:40:01 +02:00
John Crispin
20de4fe438
est_client: allow overriding CERT_PREFIX via an env variable
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 09:50:45 +02:00
John Crispin
f56fb3c0d3
est_client: allow setting the EST_SERVER via an env variable
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 09:50:45 +02:00
John Crispin
5aca134364
est_client: reduce number of flash writes
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 09:50:45 +02:00
John Crispin
89ac58b48f
add incremental interval backoff
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 09:50:45 +02:00
John Crispin
4a5cf875d9
hostapd: convert to using hostapd_utils package
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 07:55:04 +02:00
John Crispin
65bbcbbd6b
ucentral-event: ignore vlan_remove on swconfig devices
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-17 07:47:16 +02:00
CarosLiang
fc7750b900
hostapd: 6G CBP Test Will fail Sometimes
...
Fixes: WIFI-14840
Signed-off-by: CarosLiang <cliang@actiontec.com >
2025-07-16 17:02:35 +02:00
wingate5678
6c4ca10e74
certificates: change Sonicfi RAP7 series certicate type from squashfs to ext4
...
Fixes: WIFI-14834
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-07-16 17:00:53 +02:00
Tanya Singh
d71b803708
qca-wifi-7: Edgecore WiFi 7 Product Save crash log into pstore
...
Fixes: WIFI-14842
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-16 16:56:34 +02:00
YenLin Pan
07a8796acb
qca-wifi-7: zyxel_nwa130be - fine tune thermal setting
...
Signed-off-by: YenLin Pan <YenLin.Pan@zyxel.com.tw >
2025-07-16 16:55:20 +02:00
Jimmy Cheng
40d46bf5ce
ath12k-wifi: update NWA130BE BDF files
...
Signed-off-by: Jimmy Cheng <jimmy.cheng@zyxel.com.tw >
2025-07-16 16:55:01 +02:00
John Crispin
70e0942ce2
profiles/ucentral-ap: add hostapd-utils
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-16 16:54:19 +02:00
Tanya Singh
ae1bf679da
Add hostapd_cli to hostapd package for EAP111 and EAP112
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-07-16 16:51:38 +02:00
Sebastian Huang
41a3317661
modemmanager: Use AT command to set username password for EAP112 LTE
...
1. For EAP112 LTE module (Quectel EM60 series), when username and password is configured, it is required to update the context with the QICSGP AT command.
2. Use a handler function to check if the AT command is stuck and retry.
Fixes: WIFI-14545
Signed-off-by: Sebastian Huang <sebastian_huang@accton.com >
2025-07-16 16:50:47 +02:00
Venkat Chimata
a488be045c
ipq50xx: Fix missing ';;' in 02_network script
...
Description:
A missing ;; in the 02_network file for the ipq50xx target caused
improper network configuration across all ipq50xx platforms
(e.g., Edgecore EAP104, Cybertan RAP630C-311G).
This resulted in loss of Internet connectivity.
Fix:
Added the missing ;; in the appropriate case block.
Tests Performed:
Verified on Edgecore EAP104. Network configuration was applied
correctly and Internet connectivity was restored.
Fixes: WIFI-14847
Signed-off-by: Venkat Chimata <venkat@nearhop.com >
2025-07-16 16:49:29 +02:00
John Crispin
a73676abaf
ucentral-event: prune dynamic vlans when they are no longer needed
...
Fixes: WIFI-14833
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-12 06:49:57 +02:00
John Crispin
867c7fe397
qca-wifi-7/iw/: nl80211.h was not in sync causing iw to incorrectly report NO_EHT
...
Fixes: WIFI-14569
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-11 13:29:21 +02:00
John Crispin
15d7fe5f2e
ucentral-schema: update to latest HEAD
...
5276d0b use more explicit code when checking for the existence of a wiphy
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-11 13:07:20 +02:00
John Crispin
a607aac99a
cloud_discovery: set production timeouts
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-11 11:08:42 +02:00
John Crispin
5c84212bfd
ucentral-schema: update to latest HEAD
...
8238eb6 HaLow: add a switch to enable/disable radio
3bda216 fix EAP112-L ucentral not working
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-11 10:44:00 +02:00
John Crispin
84fc3d3bf1
qca-wifi-7/hostapd: increase socket buffer size
...
Fixes: WIFI-14742
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-11 10:40:16 +02:00
CarosLiang
9f93e24219
ath12k-firmware: update QCN92xx firmware
...
fixes 6G CBP fail on 20MHz BW
Fixes: WIFI-14817
Signed-off-by: CarosLiang <cliang@actiontec.com >
2025-07-11 07:41:28 +02:00
YenLin Pan
63766bb505
qca-wifi-7: zyxel_nwa130be - fine tune thermal setting
...
Signed-off-by: YenLin Pan <YenLin.Pan@zyxel.com.tw >
2025-07-11 06:59:36 +02:00
CarosLiang
bd918f55c4
qca-wifi-7: CIG WiFi 7 Product Save crash log into pstore
...
Fixes: WIFI-14631
Signed-off-by: CarosLiang <cliang@actiontec.com >
2025-07-11 06:56:08 +02:00
CarosLiang
03d158d32a
profiles/: Enable mpstats and iperf3 On CIG WiFi 7 Products
...
Fixes: WIFI-14825
Signed-off-by: CarosLiang <cliang@actiontec.com >
2025-07-11 06:55:27 +02:00
Sebastian Huang
195e1734bf
modemmanager: EAP112 LTE to reconnect automatically after reboot
...
1. Copy modemmanager to feeds/ucentral.
2. Add function to find the device sysfs path when protocol is "wwan".
3. Call ifup when modem is ready for connection.
4. Add trigger to restart modemmanager when network uci is updated.
Fixes: WIFI-14751
Signed-off-by: Sebastian Huang <sebastian_huang@accton.com >
2025-07-11 06:53:50 +02:00
YenLin Pan
f67a2c404b
qca-wifi-7: change patches-zyxel_nwa130be path
...
The original path cannot be patched
Signed-off-by: YenLin Pan <YenLin.Pan@zyxel.com.tw >
2025-07-09 06:42:18 +02:00
John Crispin
974351335f
ucentral-schema: update to latest HEAD
...
f3d1356 add reenroll command
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-08 10:25:21 +02:00
Justin.Guo
311b1a620c
cig-device-boot: update WF672A configuration
...
* Reduce the i2c frequency to enable the encryption chip to be recognized
* Add USB xr Serial driver and init gps uart param
* Factory reset when switching wifi mode
* SFP gpio should be input mode
Fixes: WIFI-14789
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-07-08 09:47:15 +02:00
John Crispin
066b442247
ucentral-client: prevent client from starting before cloud was discovered
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-08 09:42:57 +02:00
John Crispin
f2b69ce972
est_client: fix reenroll call
...
the wrong certificate was being used
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-08 09:41:12 +02:00
John Crispin
88830b2537
ucentral-client: update to latest HEAD
...
69829f6 Revert "Cloud Package Manager"
c3a3e05 remove certupdate from proto.c
4c4710a add reenroll to proto.c
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-08 09:40:30 +02:00
John Crispin
842b21fb5e
certificates: add an explicit uci commit call
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-08 09:40:06 +02:00
John Crispin
8f8eb63ac4
ubus: fix PKG_MIRROR_HASH
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-08 08:45:48 +02:00
Justin.Guo
367a919d67
qca-wifi-7: WF-189w/h add temperature control
...
1.Change the WiFi temperature threshold.
2.Use single antenna when temperature is too high.
Fixes: WIFI-14788
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-07-08 08:14:39 +02:00
Jesse Wu
919fe12372
ipq807x: add EMPLUS WAP380C support
...
Fixes: WIFI-14791
Signed-off-by: Jesse Wu <Jesse.Wu@emplustech.com >
2025-07-08 08:13:39 +02:00
John Crispin
d6d22433c5
ucentral-schema: update to latest HEAD
...
50ba97e allow sta-authorized and ft-finish to wifi-frames enum
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-07 16:43:35 +02:00
John Crispin
eff579f3ec
ucentral-schema: update to latest HEAD
...
e062b7c properly detect 320MHz channel width
Fixes: WIFI-14607
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-07 07:55:49 +02:00
John Crispin
0768008764
ucentral-schema: update to latest HEAD
...
2819f87 HaLow: fix channel 8/24/40 cannot be set
3b04c09 HaLow: set default channel to avoid HaLow not working when no channel set by JSON
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-07 07:53:19 +02:00
John Crispin
53c45dfaeb
udevmand: update to latest HEAD
...
e56be31 udevmand: fix segmentation fault during iface flushing
Fixes: WIFI-14752
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-04 08:39:43 +02:00
John Crispin
7e3f851788
ucentral-schema: update to latest HEAD
...
2b8a58b dont crash if udevmand does not reply
985f3cb WIFI-14588: Cloud Package Manager
Fixes: WIFI-14752
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-04 08:39:26 +02:00
John Crispin
205484080e
Revert "netifd: add gcmp-256 as a cipher suite when SAE is enabled on HE/EHT"
...
This reverts commit b17db16c15 .
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-03 16:46:02 +02:00
cpchangemplu
f1fc99ccbe
ipq50xx: Add back emplus,wap385c
...
Signed-off-by: cpchangemplu <cp.chang@emplustech.com >
2025-07-03 14:26:46 +02:00
jackcybertan
db36e09553
ipq50xx : add sonicfi rap630e
...
Fixes: WIFI-14728
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-07-03 14:23:37 +02:00
John Crispin
b3174a0434
ubus: bump to latest HEAD
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-03 09:21:59 +02:00
John Crispin
5f8c4d31cc
cloud_discovery: use the correct certificte for CDS
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
aa78f40843
certificates: add support for tar file based certificate storage
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
721fb4cc4d
est_client: fixup typo
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
f75a36f89f
est_client: prevent downgrades to FW not supporting EST
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
a375b9f774
est_client: add reenroll support
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
16d029f10f
cloud_discovery: split EST code out into its own tool
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
bb45e09e8b
cloud_discovery: place intermediate files into the /tmp folder
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
2798088cec
cloud_discovery: rtrim() the extracted subject
...
this removes trailing \n\n characters
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
470703a490
luci-mod-ucentral: update certupdate for insta birth certificates
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
c56d60b2d3
certificates: do not check for cas.pem when mounting certs
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
1178c3b6f1
certificates: set new certs inside UCI
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
0db44ca55b
cloud_discovery: add insta EST support
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
ae5015424b
cloud_discovery: add initial ubus status call
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
32c7a7ff1d
cloud_discovery: add support for hostname_validation
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
39e601cbd4
luci-mod-ucentral: remove digicert specific files
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
ce9c896371
cloud_discovery: depend on the certificates package
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
0008cb20dd
cloud_discovery: add option 138 support
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
701242ed25
netifd: drop dhcp option 138 patch
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
67dd4bfca7
cloud_discovery: remove pki2 env lookup
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
John Crispin
88fb4cafbc
firstcontact: remove now unused digicert client
...
Fixes: WIFI-14694
Signed-off-by: John Crispin <john@phrozen.org >
2025-07-01 07:18:54 +02:00
Justin.Guo
feb410ddc3
cig-poe-judgment: add package
...
Support reading WAN PoE type from /proc/poe_info for WF189/WF189W/WF189H/WF672A
Fixes: WIFI-14697
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-06-27 12:39:58 +02:00
jackcybertan
43a8dd1303
poe: add userland helpers scripts/tools
...
Support user to control PSE on/off (chip: tps23861) via ucentral config file.
Use uci-default to write poe's uci default file.
Fixes: WIFI-14724
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-06-27 12:38:19 +02:00
Ian Chen
188f6b33e0
netifd-morse: fix HaLow client cannot access network
...
add wds_bridge in hostapd for HaLow radio
Fixes: WIFI-14615
Signed-off-by: Ian Chen <ian77_chen@accton.com >
2025-06-27 12:37:20 +02:00
John Crispin
27e4eb3685
ucentral-client: update to latest HEAD
...
08a842d Cloud Package Manager
Fixes: WIFI-14588
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-27 09:41:44 +02:00
John Crispin
cd8294eca0
ucentral-schema: update to latest HEAD
...
125a148 add PoE support for client ports
17b6c18 Cloud Package Manager
a86b8b0 Fix typo in enhanced MPSK property name
57852ed update schema.json to 4.1.0
e155483 command: update upgrade and factory commands to handle new operational certs
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-27 07:39:52 +02:00
Kumiko18
e12ecf831e
cpm: Cloud Package Manager
...
Added cpm init.d file to list installed package on remote APs
Fixes: WIFI-14588
Signed-off-by: Kumiko18 <alex18_huang@accton.com >
2025-06-27 07:38:23 +02:00
Marek Kwaczynski
1213182012
mpskd: fix incorrect MPSK value assignment
...
If MPSK is enabled on any interface, `ssid.mpsk` should be true.
Prevents overwriting true with a false value when multiple interfaces
share the same SSID.
Also allow handling of the 'reload' event even when MPSK is not enabled,
to ensure config reloads are not skipped, e.g. when configuration is empty.
Fixes: WIFI-14484
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-06-27 07:37:20 +02:00
Sundareswar P
d5df71619a
qca-wifi7: hostapd: Fix for roaming failure during PSK2-RADIUS configuration
...
After roaming to EAP105, the roaming frames were exchanged successfully,
but the STA sent a deauthentication frame to the AP with an "INVALID IE" error.
The RSNXE subfield in the FTIE was set in the Reassociation Response frame.
The STA validated the Reassociation frame and was unable to process the
RSNXE subfield.
Modified SAE options (sae_pwe=4 and sae_require_pmf=0).
Fixes: WIFI-14544
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-06-27 07:37:20 +02:00
John Crispin
a177884893
.github/workflows/build-dev.yml: add cig_wf660a
...
Fixes: WIFI-14630
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-26 11:38:08 +02:00
Jesse Wu
1f7d8a7bb7
ipq50xx: add EMPLUS WAP385C support
...
Signed-off-by: Jesse Wu <Jesse.Wu@emplustech.com >
2025-06-18 07:01:49 +02:00
jackcybertan
dc02d2722a
ipq807x_v5.4: update BDF for SonicFi RAP650C
...
Fixes: WIFI-14574
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-06-18 06:58:41 +02:00
jackcybertan
13ac9166ef
ipq807x_v5.4: change SonicFi RAP650C Wi-Fi MAC address sequence
...
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-06-18 06:58:41 +02:00
John Crispin
3d6f360cb6
ucentral-client: set version.json to 4.1.0
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-13 08:19:37 +02:00
John Crispin
6659e77bd0
qca-wifi-7/ipq53xx: consolidate phy_quirk handling
...
Fixes: WIFI-14680
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-13 08:19:37 +02:00
wingate5678
b061cc55ce
ipq807x_v5.4: cooling daemon with configuration file support
...
Fixes: WIFI-14682
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-06-13 08:19:37 +02:00
John Crispin
b17db16c15
netifd: add gcmp-256 as a cipher suite when SAE is enabled on HE/EHT
...
Fixes: WIFI-14594
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-11 14:26:29 +02:00
John Crispin
d36866301f
feeds/hostapd: fix/improve rssi_threshold handling
...
* add an ucentral-event
* turn thresholds into bss options
Fixes: WIFI-14679
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-11 09:18:09 +02:00
John Crispin
ffccb65d1b
qca-wifi-7/hostapd: fix/improve rssi_threshold handling
...
* add an ucentral-event
* turn thresholds into bss options
Fixes: WIFI-14679
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-11 09:18:07 +02:00
John Crispin
af165342ed
ipq807x_v5.4/hostapd: fix/improve rssi_threshold handling
...
* add an ucentral-event
* turn thresholds into bss options
Fixes: WIFI-14679
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-11 09:18:04 +02:00
John Crispin
ed62236d31
ucentral-schema: update to latest HEAD
...
ac3a1c7 convert rssi threshold to interface options
Fixes: WIFI-14679
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-11 09:17:55 +02:00
wingate5678
346bdd9c16
qca-wifi-7: sonicfi rap7110c-341x change BDF
...
Fixes: WIFI-14661
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-06-10 10:53:33 +02:00
Jesse Wu
dc41a0fd0c
ipq60xx: Support EMPLUS WAP386V2 model
...
Device specifications:
======================
SoC: Qualcomm IPQ6018
RAM: 1 x 1G DDR4 RAM
Flash: NAND 128MB
Radio: 2T2R@2.4GHz , 2T2R@5GHz
Ethernet: 1 x 1GbE PHY
Reset Button: 1
Power Source: AC, Standard PoE 802.3af/at
LED Indicator: 4 x Single-color LED indicator (GPIO Control)
Signed-off-by: Jesse Wu <Jesse.Wu@emplustech.com >
2025-06-10 10:46:38 +02:00
cpchangemplu
2b26a4e68a
mediatek: Add thermal protection for EMPLUS WAP588M model
...
Signed-off-by: cpchangemplu <cp.chang@emplustech.com >
2025-06-10 10:43:53 +02:00
cpchangemplu
fa96b2b24d
mediatek: Fix image upgrade fail for EMPLUS WAP588M
...
Signed-off-by: cpchangemplu <cp.chang@emplustech.com >
2025-06-10 08:55:54 +02:00
John Crispin
36f00adc7a
ucentral-schema: update to latest HEAD
...
827ccc2 setting probe_request_rssi incorrectly turned the SSID into a hidden one
Fixes: WIFI-14678
Signed-off-by: John Crispin <john@phrozen.org >
2025-06-10 08:52:16 +02:00
Tanya Singh
5314a752bd
mediatek: Enable dualboot for EAP111 and EAP112 by default
...
Fixes: WIFI-14579
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-06-10 07:39:11 +02:00
Marek Kwaczynski
0f6683f31e
iwinfo.uc: Fix access to undefined htmode object
...
iwinfo command failed due to undefined htmode object
Fixes: WIFI-14666
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-06-10 07:10:57 +02:00
Paul White
8ee96c36c9
ipq807x: fix silent reboot caused by broken printk
...
A printk() was previously introduced that is passing the log level as the first argument
instead of prefixing the format with the level. Given this code path, this is causing a
kernel fault and CPU reboot without any kernel panic/stack trace, since it's crashing
inside of printk().
CPU:0 ts:206871944795 ffffffc008dcf828 ffffffc008dfe914 cleanup_module [batman_adv] <- cfg80211_vendor_cmd_reply+0x7ff4/0xa064 [cfg80211]
CPU:0 ts:206871944800 ffffffc0108e69d0 ffffffc008dcf80c printk <- cleanup_module+0xb22c/0xa20 [batman_adv]
CPU:0 ts:206871944802 ffffffc0101173c0 ffffffc0108e6a08 vprintk_func <- printk+0x60/0x6c
CPU:0 ts:206871944806 ffffffc010115e44 ffffffc0101160ec vprintk_emit <- vprintk_default+0x4c/0x60
CPU:0 ts:206871944809 ffffffc0101172d0 ffffffc010115e88 __printk_safe_enter <- vprintk_emit+0x84/0x29c
CPU:0 ts:206871944812 ffffffc010115c20 ffffffc010115ec4 vprintk_store <- vprintk_emit+0xc0/0x29c
CPU:0 ts:206871944816 ffffffc0100a53a4 ffffffc010080fb4 do_translation_fault <- do_mem_abort+0x54/0xb0
CPU:0 ts:206871944819 ffffffc0100a4eb4 ffffffc0100a5448 do_page_fault <- do_translation_fault+0xc8/0xe0
CPU:0 ts:206871944821 ffffffc0100a4d08 ffffffc0100a5038 __do_kernel_fault <- do_page_fault+0x1a8/0x4f0
CPU:0 ts:206871944837 ffffffc0100a4c88 ffffffc0100a4df0 die_kernel_fault <- __do_kernel_fault+0x110/0x1b0
After applying the fix, we can see this code path is being hit:
[26799.175166] cfg80211_calculate_bitrate_he: invalid rate->nss: 0
This still doesn't fix the original issue triggering this code path, which is why a nss value
of 0 is being reported.
Fixes: eb9cbaec7 ("ipq807x: Shorten the kernel backtrace warning msg for ieee80211_bss_get_elem")
Fixes: WIFI-14677
Signed-off-by: Paul White <paul@shasta.cloud >
2025-06-10 06:53:50 +02:00
Arif Alam
89789900f5
ath11k: fix roaming firmware crash
...
Fix the case where firmware crashes when STA sends AUTH with same
MAC address to multiple SSIDs on the same radio.
Fixes: WIFI-13276
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2025-06-10 06:46:41 +02:00
Ken
6add44ae27
qca-wifi-7: fix invalid port mapping due to syntax error in 02_network
...
issue was introduced by edfd2883f5
Fixes: WIFI-14650
Signed-off-by: Ken <xshi@actiontec.com >
2025-05-30 07:24:33 +02:00
John Crispin
14a0c2d272
qca-wifi-7: add missing Kbuild symbols
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-05-27 13:48:08 +02:00
John Crispin
9e769c85cb
.github/workflows/: add more boards
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-05-27 10:39:57 +02:00
mike_ding
d6e1008c7a
Support dual image and fix reset button does not work issue
...
Signed-off-by: mike_ding <mike_ding@sdc.sercomm.com >
2025-05-27 10:39:57 +02:00
John Crispin
0a4c10d6cc
ucentral-schema: update to latest HEAD
...
b4cfdc6 cmd_upgrade: implement secure download
Signed-off-by: John Crispin <john@phrozen.org >
2025-05-26 16:23:17 +02:00
jackcybertan
edfd2883f5
qca-wifi-7: Support for CyberTAN RAP750E-S AP
...
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-05-26 16:23:17 +02:00
Tanya Singh
f6ac6f791e
mediatek: Fix typo in the name of the /etc/init.d/bootcount script
...
Fixes: WIFI-14579
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-05-26 16:23:17 +02:00
Tanya Singh
88fe15a985
mediatek: include patched hostapd for EAP112
...
Fixes: WIFI-14645
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-05-26 16:23:17 +02:00
Justin.Guo
a9f47c9e1e
qca-wifi-7: CIG WiFi7 WF-672A bring up
...
* bring up wf672a
* add drivers lsm303agr rtl8221d ilps22qs
* add cig-wifi-mode-sw for switching radio to 2 bands or 3 bands
Fixes: WIFI-14509
Signed-off-by: Justin.Guo <guoxijun@actiontec.com >
2025-05-26 16:23:17 +02:00
Marek Kwaczynski
f17314a2d3
qca-wifi-7: hostapd: fix missing PSK assignment for EMPSK
...
When using psk2-radius in combination with enhanced MPSK,
the passphrase was not properly propagated to user scripts
via the ucode interface, because the PSK field was not set
in the connected station context.
This patch fixes that by copying the passphrase into the
psk field.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-05-26 16:23:17 +02:00
Marek Kwaczynski
29739ebd13
qca-wifi-7: EAP-105: Derive WLAN MAC addresses from WAN MAC
...
For the Edgecore EAP-105 platform, configure the 2.4GHz, 5GHz,
and 6GHz WLAN interfaces to use MAC addresses derived
from the base WAN MAC address.
Fixes: WIFI-14624
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-05-26 16:23:17 +02:00
Sundareswar
3caba52dba
EAP105: Roaming failed, if MPSK (AAA server) is configured ( #515 )
...
* While Roaming the AP couldn't find the wildcard R0KH and R1KH ids,
which are required by Fast transistion.
* Issue caused by the placement of conf parser in the invalid location.
Fixes: WIFI-14544
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-05-26 16:23:17 +02:00
Ken
44bcc50815
qcom-wifi-7: Default TC fq_codel queue on GRE cause low GRE RX throughput
...
Fixes: WIFI-14603
Signed-off-by: Ken <xshi@actiontec.com >
2025-05-26 16:23:17 +02:00
Ken
942d7c15b4
ipq807x: WF188n/WF196 lost the certificates files after upgrade
...
Fixes: WIFI-14623
Signed-off-by: Ken <xshi@actiontec.com >
2025-05-26 16:23:17 +02:00
John Crispin
25be7aef1a
ucentral-schema: update to latest HEAD
...
b4635dc add 138 to default requested DHCP options
Signed-off-by: John Crispin <john@phrozen.org >
2025-05-26 16:23:17 +02:00
800246@emplustech.com
a2e1ffe089
mediatek: Swiitch LAN and WAN port for EMPLUS WAP588M
...
Signed-off-by: 800246@emplustech.com <cp.chang@emplustech.com >
2025-05-19 06:11:46 +02:00
polun
911f8eaa4c
qca-wifi-7: Add Zyxel NWA130BE model
...
Signed-off-by: YenLin Pan <YenLin.Pan@zyxel.com.tw >
2025-05-19 06:11:20 +02:00
Tanya Singh
590ee6d514
mediatek: Update ethernet driver to support PHY AN8801 on Edgecore EAP111
...
Fixes: WIFI-14576
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-05-19 06:10:35 +02:00
Ken
5054a71062
qca-wifi-7: WF189 Save crash log into pstore
...
Fixes: WIFI-14582
Signed-off-by: Ken <xshi@actiontec.com >
2025-05-19 06:09:53 +02:00
John Crispin
d69c1c3176
ucentral-schema: update to latest HEAD
...
9710867 (HEAD -> main, origin/main, origin/HEAD) make the MTU configurable on GRE tunnels
4dd0904 SSH IdleTimeout can be configured from JSON config
6faaa1f HaLow: Extend ucentral schema & state for HaLow
Signed-off-by: John Crispin <john@phrozen.org >
2025-05-19 06:09:01 +02:00
John Crispin
8d0da5a086
ucentral-schema: update to latest HEAD
...
6faaa1f HaLow: Extend ucentral schema & state for HaLow
aa9cac5 dhcp_inject: Use same keyword "dhcp-inject" in config file
Signed-off-by: John Crispin <john@phrozen.org >
2025-05-12 10:45:38 +02:00
Wingate Chi
eb66feb5c5
qca-wifi-7: Support Sonicfi RAP750E-H
...
Fixes: WIFI-14563
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-05-12 10:45:38 +02:00
800246@emplustech.com
89b6ebd518
mediatek: Add EMPLUS WAP588M model
...
Specifications:
SoC: MediaTek MT7981B
RF Chipset: MT7976C @2.4GHz 2T2R
MT7976C @5ghz 2T2R
RAM: 512MB DDR4 RAM
Flash: SPI-NAND 128 MiB
Ethernet: 2 x 1GbE PHY
Reset Button: 1
Power on/off switch dip: 1
Power Source: Standard PoE 802.3af/at
LED Indicator: 5x Single-color LED indicator (GPIO Control)
Signed-off-by: 800246@emplustech.com <cp.chang@emplustech.com >
2025-05-12 10:45:38 +02:00
Tanya Singh
e3dfe5ea74
rrmd: RRM with Channel Utilization - update radio status check
...
Fixes: WIFI-14575
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-05-12 10:45:38 +02:00
ian77_chen
f39339564a
mediatek-sdk: Support HaLow on EAP112
...
1. porting MorseMicro HaLow driver to support HaLow on EAP112
2. Only support FCC regulation because of hardware limitation
3. Add /etc/init.d/halow-gpio-reset to initialize HaLow chip in early stage
4. Add /etc/uci-defaults/aaa-fix-phy0-to-morse to correct the default uci for HaLow radio.
Signed-off-by: Ian Chen <ian77_chen@accton.com >
2025-05-12 10:45:38 +02:00
John Crispin
adac3818a4
ucentral-schema: update to latest HEAD
...
52afdf8 fix wifi-scan on wifi-7 devices
Fixes: WIFI-14541
Fixes: WIFI-14537
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-30 08:03:26 +02:00
Ken
a516b035ab
qca-wifi-7: WF189 10G PHY code optimization
...
* add "limit_rtlphy_10g_ablity" in DTS , no side effect on other product.
* disable 10G capability if DTS defined limit_rtlphy_10g_ablity , no side effect on other product.
* revert the last 0006-qca-ssdk-Fix-10G-rtl-phy-driver-for-c45-mdio-read-wr.patch and based on 0005 patch.
Fixes: WIFI-14567
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-29 08:25:22 +02:00
Ken
29b088ef21
qca-wifi-7: fix WF189 WAN port link issues
...
Fixes: WIFI-14546
Signed-off-by: Ken <xshi@actiontec.com >
2025-04-28 17:06:48 +02:00
John Crispin
10b875d42c
ucentral-schema: update to latest HEAD
...
3b88fc1 dhcp_inject: Multiple ssids sometime didn't display dhcp option 82 rules
Fixes: WIFI-14564
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-28 12:35:34 +02:00
alex18_huang
1f0a24a941
udhcpinject: Multiple ssids sometime didn't display dhcp option 82 rules
...
Added check when parsing ssid info retrieved from iwinfo.
Program will exit if expected interface count and iwinfo entry count mismatch.
Fixes: WIFI-14564
Signed-off-by: alex18_huang <alex18_huang@accton.com >
2025-04-28 12:33:00 +02:00
Marek Kwaczynski
ea3afcda56
qca-wifi-7: hostapd.sh: add missed functionality from ipq807x_v5.4
...
The main reason was adding missed functionality for Radius
configuration which caused rejecting WiFi clients on
authentication level.
Still some changes not included:
* AFC,
* hs20_release,
* multiple_bssid,
* he_co_locate
Fixes: WIFI-14459
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-04-25 08:16:02 +02:00
mike_ding
b5987cc2a7
qca-wifi-7: Support for AP72TIP and AP72TIP-v4 on APNOS v4.x
...
Signed-off-by: mike_ding <mike_ding@sdc.sercomm.com >
2025-04-25 08:15:00 +02:00
jackcybertan
fc700364d1
ipq807x: add sonicfi rap650c
...
Fixes: WIFI-14494
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2025-04-25 08:14:14 +02:00
Tanya Singh
f2fec9dd87
rrmd : Update file names from /tmp dir in rrmd init script that need to be removed when rrmd (re)starts
...
Fixes: WIFI-14560
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-04-25 08:13:22 +02:00
Ken
2de57bf167
qca-wifi-7: WF189 Reset button does not work
...
Fixes: WIFI-14538
Signed-off-by: Ken <xshi@actiontec.com >
2025-04-22 06:30:39 +02:00
John Crispin
7d31bebdb0
ucentral-schema: update to latest HEAD
...
048a53d state.uc: Fix the calculation of Channel Utilization (chanUtil) in statistics
Fixes: WIFI-14531
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-18 07:56:34 +02:00
Tanya Singh
fcb5a972cf
rrmd: Update Channel Utilization Calculation in RRM
...
- avoid calculated Channel Utilization value to be 'infinity' from cycle_count_delta being '0'
Fixes: WIFI-14536
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-04-18 07:52:11 +02:00
Wingate Chi
082d04025c
qca-wifi-7: change RAP750W-311A LED to PWM mode
...
Fixes: WIFI-14530
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-04-17 13:33:56 +02:00
alex18_huang
9ef7d2c227
udhcpinjecti: missing from the package list in ucentral-ap.yml
...
Add package udhcpinject into profiles/ucentral-ap.yml
Fixes: WIFI-14529
Signed-off-by: Alex Huang <alex18_huang@accton.com >
2025-04-17 13:32:37 +02:00
Ken
e0d61cb0fb
qca-wifi-7: WF189/W/H Add 189H support
...
Fixes: WIFI-14524
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-17 13:31:56 +02:00
Ken
ed2795b30b
qca-wifi-7: CIG smp affinity for supporting 53XX platform with wikiki and pebble
...
Fixes: WIFI-14526
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-17 13:30:45 +02:00
alex18_huang
4b31e481ec
udhcpinject: qdisk didn't create successfully for some interfaces while using dhcpinject
...
Program sometimes did not setup tc qdisc on some interfaces when creating SSID with dhcpinject enabled initially.
Added delayed startup.
Fixes: WIFI-14522
Signed-off-by: alex18_huang <alex18_huang@accton.com >
2025-04-10 16:17:34 +02:00
John Crispin
ba10a88ab3
ucentral-schema: update to latest HEAD
...
5a6d23b fix/improve swconfig detection
Fixes: WIFI-14525
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 16:13:58 +02:00
John Crispin
b85bc5db9c
ipq50xx: fix swconfig setup to align with latest schema changes
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 16:13:26 +02:00
John Crispin
e998711444
ipq807x/hostapd: backport FT VLAN fix
...
The bug was in the upstream hostapd codebase, backport/rebase the fix
--> ba150059d1ec964add8f29eb2c92dd6dfde97308
Fixes: WIFI-14508
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 14:26:04 +02:00
John Crispin
2d6bea18df
Revert "ipq53xx: add smp-affinity for wifi IRQs"
...
This reverts commit e5bcda17e7 .
The patch was causing crashes
Fixes: WIFI-14523
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 13:06:05 +02:00
John Crispin
1bf9e40987
ucentral-schema: update to latest HEAD
...
43c7375 default max-inactivity to 300
Fixes: WIFI-14520
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 09:46:30 +02:00
John Crispin
a20b96eb31
ucentral-schema: update to latest HEAD
...
7624d43 set generate_local_psk to false if roaming and multi_psk are enabled
Fixes: WIFI-14484
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 09:10:45 +02:00
John Crispin
c83ac67492
cloud_discovery: make use of the new TIP cloud discovery server
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 08:30:15 +02:00
John Crispin
2b0c600fb3
ucentral-schema: update to latest HEAD
...
246873b add max-inactivity to ssid config
3b5a5c4 Allow option 82 DHCP fields to be transparently injected into client DHCP requests
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-10 08:25:21 +02:00
alex18_huang
c5793bae3a
udhcpinject: Allow option 82 DHCP fields to be transparently injected into client DHCP requests
...
1. Added userspace application udhcpinject to inject DHCP option 82 transparently
2. Added README.md for example usage
Fixes: WIFI-14018
Signed-off-by: alex18_huang <alex18_huang@accton.com >
2025-04-10 07:56:13 +02:00
Marek Kwaczynski
6afbb92dec
qca-wifi-7: hostapd.sh: add psk2-radius encryption
...
Fixes: WIFI-14459
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-04-10 07:55:37 +02:00
John Crispin
89cb9d63bd
ucentral-schema: update to latest HEAD
...
10b5c36 extend swconfig support for dual cpu port swconfig switches
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-09 09:36:43 +02:00
Ken Shi
16963c997f
qca-ssdk: increase number of vlans on qca8337
...
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-09 09:22:41 +02:00
Ken Shi
f7a9ad770d
ipq533x: add CIG WF189W support
...
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-09 09:14:50 +02:00
Ken Shi
dcdccc7ba0
ath12k-firmware: add miami pebble pebble firmware
...
Signed-off-by: Ken <xshi@actiontec.com >
2025-04-09 09:07:51 +02:00
Rick Sommerville
b67f97f213
hostapd: proxy arp: fail gracefully
...
Disable proxy arp and continue if snoop interface setup fail.
Fixes: WIFI-14507
Signed-off-by: Rick Sommerville <rick.sommerville@netexperience.com >
2025-04-09 08:53:01 +02:00
jackcybertan
e9dcf3d953
mediatek: RAP630W-211G change ethernet label and led behavior
...
Fixes: WIFI-14519
Signed-off-by: Jack Tsai <jack.tsai@cybertan.com.tw >
2025-04-08 14:26:19 +02:00
John Crispin
cc5edd4446
ucentral-schema: update to latest HEAD
...
0683d04 Add pdev_stats and channel utilization for each radio in the statistics
Fixes: WIFI-14460
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-08 07:25:33 +02:00
Marek Kwaczynski
79adece623
mediatek/hostap: fix roaming ASSOC REJECT
...
During roaming validation, an issue was detected with
the ASSOC-REJECT event, which had a status code of 55.
To resolve this, the SNonce from the Auth Request Frame
was copied, and the random ANonce is now used
only when expired.
Fixes: WIFI-14326
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-04-08 06:55:15 +02:00
John Crispin
49b64ec93f
feed.conf.default: use the github.com based trees
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-07 18:10:23 +02:00
Marek Kwaczynski
b1e3686124
ipq807x_v5.4/mac80211: ath11k: fix peer addition/deletion error on sta band migration
...
Fix removing rhash when station is roaming between radios and
apply logic from opensource driver during adding/removing
peer.
Fixes: 7374c39d ("ath11k: fix STA roaming between radios")
Fixes: WIFI-14457
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-04-07 16:32:04 +02:00
John Crispin
e5bcda17e7
ipq53xx: add smp-affinity for wifi IRQs
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-07 13:32:14 +02:00
Ken Shi
7c04ed76bd
ipq53xx: fix CIF WF189 MDIO clock speed
...
Fixes: WIFI-14510
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-07 12:46:06 +02:00
John Crispin
04a5cc67e0
ipq53xx: fix rap750w-311a calibration data and memory profile
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-07 11:42:53 +02:00
Wingate Chi
80b2c6d080
WIFI-14511 support Sonicfi RAP750W-311A
...
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-04-07 10:47:47 +02:00
Ken
c683f19b7c
ipq60xx: WF188n update the BDF to support FCC/CE/MY/AU/ES/SE/FR
...
Fixes: WIFI-14512
Signed-off-by: Ken Shi <xshi@actiontec.com >
2025-04-07 10:07:14 +02:00
John Crispin
1b10507cf1
busybox: the DHCP client would sometimes send a superflous port unreachable frame
...
Fixes: WIFI-14149
Signed-off-by: John Crispin <john@phrozen.org >
2025-04-01 13:26:24 +02:00
John Crispin
50abd015b3
ucentral-schema: update to latest HEAD
...
a2133a8 always regenerate the default /e/c/wireless config
505e1a1 ssh: add IdleTimeout=60
Fixes: WIFI-14473
Fixes: WIFI-14470
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-28 09:44:37 +01:00
Tanya Singh
5dd212829f
WIFI-14502: Add wlan-ucentral-schema revision hash to /etc/openwrt_release
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-03-28 08:06:00 +01:00
Sebastian Huang
3abc947f8f
WIFI-14503: Update BDF (EEPROM file) for Edgecore EAP112
...
Signed-off-by: Sebastian Huang <sebastian_huang@accton.com >
2025-03-28 08:05:38 +01:00
John Crispin
5f42e9db58
mac80211: AP VLAN interfaces did not inheret the HE capabilities correctly
...
Fixes: WIFI-14491
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-28 08:04:28 +01:00
Ken
b181add059
WIFI-14490 WF189 eth1 and eth0 swapped on 12.5
...
Signed-off-by: Ken <xshi@actiontec.com >
2025-03-26 14:56:43 +01:00
Tanya Singh
7eae0397f1
WIFI-14500: Fixes for Edgecore OAP103 1. Support bluetooth 2. Allow certificate loading on dual boot 3. Support RRM with Channel Utilization 4. Remove EAP102 from supported devices
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-03-26 14:56:31 +01:00
Tanya Singh
1033a63140
WIFI-14180: Update BDF for Edgecore EAP111
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-03-26 14:56:21 +01:00
Tanya Singh
954108d742
WIFI-14460: Update RRM using Channel Utilization script - Improve policy_chanutil.uc script - Improve scripts reading pdev_stats - Support 6G radio AP - Support WiFi7 AP
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-03-26 07:42:03 +01:00
John Crispin
caee55a61f
hostapd: correctly set the sta->psk_id on 6G band
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-26 07:40:55 +01:00
John Crispin
502727ad6d
qca-wifi7: add DVLAN multicast too unicast workaround
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 11:56:50 +01:00
Venkat Chimata
1868e369d3
WIFI-14489: Adding Edgecore OAP103 to the list of supported APs
...
1. Integrated WiFi boarddata
2. Integrated LEDs
3. sysupgrade changes are integrated
4. Network ports are enumerated
5. A new profile is added under profiles
Signed-off-by: Venkat Chimata <venkata@shasta.cloud >
2025-03-24 11:56:34 +01:00
John Crispin
5a597c912d
ipq807x/hostapd: merge missing e-mspk sta/psk index patch
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 10:47:05 +01:00
John Crispin
82ae3766fa
ucentral-schema: update to latest HEAD
...
d183922 WIFI-14477: Get switch carrier, speed & duplex info from swconfig command
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 10:08:24 +01:00
John Crispin
d250f91bb3
ipq95xx: drop ATH12.3 support
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 08:11:43 +01:00
John Crispin
76d112144f
ucentral-client: update version.json to 4.0.0
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 08:11:14 +01:00
John Crispin
d218c15419
ucentral-schema: update to latest HEAD
...
c2338ad snmp: fix schema/yaml syntax
50c4ead set schema version to 4.0.0
d8260f8 add property that allows disabling MPSK
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 08:09:40 +01:00
John Crispin
2bf2093305
github/workflow: re-enable CIG WF189
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 08:05:59 +01:00
John Crispin
c548edfe89
qca-wifi-7: update CIG WF189 BDF files
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 07:37:39 +01:00
John Crispin
82a6e24e91
qca-wifi-7: add RTK phy fixes from CIG
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 07:36:09 +01:00
Wingate Chi
c0e6b523c4
WIFI-14488 RAP7110C-341X enable PWM LED config.
...
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-03-24 07:30:25 +01:00
steven.lin
195fc01d06
mediatek: Add SENAO IAP2300M model
...
Signed-off-by: steven.lin <steven.lin@senao.com >
2025-03-24 07:29:55 +01:00
John Crispin
19959d016b
ucentral-schema: update to latest HEAD
...
5a39d23 remove beacon-interval option
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-24 07:28:40 +01:00
John Crispin
03b34b062e
ucentral-schema: update to latest HEAD
...
1c11c1b WIFI-14284: Use swconfig to get the correct port to VLAN ID mapping for statistics
Fixes: WIFI-14284
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-17 12:09:37 +01:00
Wingate Chi
076bc0712e
ipq807x_v5.4: change RAP630W-312G and RAP63XC vendor name
...
Fixes: WIFI-14471
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-03-14 10:55:22 +01:00
John Crispin
486cc7983a
qca-wifi-7: re-enable CIG wf189 support
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-14 08:41:43 +01:00
John Crispin
80343e9dad
dropbear: update to upstream version
...
Fixes: WIFI-14466
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-14 08:40:51 +01:00
steven.lin
dd14c1c6d1
mediatek: Add SENAO models into mount_certs scripts
...
Signed-off-by: steven.lin <steven.lin@senao.com >
2025-03-14 08:06:21 +01:00
John Crispin
71748f4cd4
ucentral-schema: update to latest HEAD
...
481fd77 WIFI-14472: JSON config should allow to set channels above 196 to support channels in 6G band
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-14 07:40:01 +01:00
Wingate Chi
49c51594a3
WIFI-14452 Fix Crash Observed on Cybertan rap7110c-341x with TIP dbdc168 image
...
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-03-14 07:35:49 +01:00
John Crispin
739b6b29b2
ucentral-schema: update to latest HEAD
...
d2ff805 Change realtime events type from enum to string
a518b02 schema, ssid: add mpsk-radius encryption
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-11 10:27:27 +01:00
John Crispin
7e393c4831
qca-wifi-7: add preliminary support for rap750w_311a
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-11 10:26:33 +01:00
Marek Kwaczynski
1149cd41aa
ucentral: Add example for mpsk-radius config
...
Create example how to configure EMPSK with AAA using
new crypto method: mpsk-radius.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:09:12 +01:00
Marek Kwaczynski
18bb47be4d
hostapd: mpskd: use mpsk from wireless config
...
In MPSK AAA need to use mpsk info to block scans
becasue keys are not configured.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:09:12 +01:00
Marek Kwaczynski
7847e1778e
netifd: hostapd.sh add multi_psk param
...
Notification about enabling multi_psk for specific
wireless network.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:09:12 +01:00
Marek Kwaczynski
57735bcd18
hostapd: mpskd: fix checking addr in ssid_cache
...
Fix ucode syntax.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:09:12 +01:00
Marek Kwaczynski
376072ad97
hostapd: mpskd: minor: remove white spaces end of the line
...
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:09:12 +01:00
Marek Kwaczynski
afa7e2bbb3
rrmd: scan: fix setting center_freq1 in params
...
Add casting center frequency to int, previosly was used
string.
{
"dev": "wlan1",
"wiphy_freq": "5180",
"measurement_duration": "70",
"center_freq1": "518030",
"scan_ssids": [
""
],
"scan_flags": 4
}
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:08:45 +01:00
Marek Kwaczynski
52f2e31892
rrmd: Update scanning for WiFi 7 devices
...
Update scan module to support WiFi 7 devices
which have virtual phys defined. Scanning on
the different virtual phys but on the same physical
phy isn't allowed.
Add NL CBs to notify about scanning progress.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:08:45 +01:00
Marek Kwaczynski
b791a723ca
qca-wifi-7/mac80211: Add tip patch to fix scanning on WiFi 7 devices
...
Need to unblock chandef as scanning definitions which
is used by TIP modules for scanning trigger.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:08:45 +01:00
Marek Kwaczynski
a9e0e16a80
rrmd: phy: Use wiphy_name if exists
...
When wiphy_name is defined should be used instead of
creating name using wiphy index.
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:08:45 +01:00
Marek Kwaczynski
4d55d427d7
ucentral-event: fix null pointers checking in channel switch
...
Invalid logical operator was used for checking null
pointers in channel_switch function: AND instead OR
Fixes: 7477963b ("ucentral-event: add channel switch handler")
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-03-11 10:08:44 +01:00
John Crispin
53ff49eb6f
Revert "ath11k: fix STA roaming between radios"
...
This reverts commit 7374c39dea .
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-07 09:38:38 +01:00
John Crispin
1a3c87cf35
.github/workflows: remove aercom ap72 from CI
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-07 09:38:07 +01:00
John Crispin
75df7bb794
ath12k-wifi: use SDK BDF for rap7110c_341x
...
Use the SDK BDF for now until the ODM provides a fixed version.
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-07 09:36:52 +01:00
Tanya Singh
b61850ff18
WIFI-14462: hostapd_cli command missing from Wifi7 AP
...
Signed-off-by: Tanya Singh <tanya.singh@4ipnet.com >
2025-03-07 09:35:54 +01:00
Venkat Chimata
3738f5b884
mac80211: workaround: Send multicast frames as multiple unicast frames in DVLAN mode
...
Broadcast / Multciast transmission is not working in DVLAN mode in the driver.
If we send the frames as unicast frames, it works. This is a workaround for now.
Need to rollback once we add a clean fix.
Fixes: WIFI-14441
Signed-off-by: Venkat Chimata <venkata@shasta.cloud >
2025-03-04 06:51:45 +01:00
John Crispin
708895e7ae
ucentral-schema: update to latest HEAD
...
39e380e enforce PMF for sae-mixed mode
Fixes: WIFI-14450
Signed-off-by: John Crispin <john@phrozen.org >
2025-03-03 15:40:27 +01:00
John Crispin
dbdc16804d
ipq5322: update rap7110c_341x to ATH12.5.5
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-27 15:54:48 +01:00
John Crispin
98375061da
.github/workflows/: disable wf189 until we have an updated BDF
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-27 12:45:53 +01:00
John Crispin
e3edb1fdd5
qca: drop ath12.4 support
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-27 12:45:53 +01:00
John Crispin
68cf54d9f7
qca-wifi-7: update to ath12.5.5
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-27 12:45:52 +01:00
John Crispin
28161aff6e
ucentral-schema: update to latest HEAD
...
90aa0ee system: Fix the delta_counters for dynamic vlan stations
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-27 09:47:06 +01:00
steven.lin
c2ea273bea
WIFI-14432: Fix MAC address assignment on SENAO IAP4300M
...
Signed-off-by: steven.lin <steven.lin@senao.com >
2025-02-27 09:43:32 +01:00
Tanya Singh
9d611028fd
WIFI-14438: Fix LAN port issue in Edgecore EAP105
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-02-27 09:43:15 +01:00
steven.lin
24dbba4c5a
WIFI-14424: Add SENAO models into auto build list
...
Signed-off-by: steven.lin <steven.lin@senao.com >
2025-02-12 13:31:42 +01:00
John Crispin
4c84a3dbdd
mac80211/hostapd: more wifi bringup fixes
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-11 11:06:38 +01:00
John Crispin
664fa78572
hostapd: only enforce multiple bssid on 6G
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-10 17:10:15 +01:00
John Crispin
26e782627b
rrmd: the daemon was crashing on wifi-7 devices.
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-10 12:05:45 +01:00
John Crispin
9105d688b9
mac80211: fix typo that caused device entry duplication
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-10 12:05:27 +01:00
Wingate Chi
a9694847cd
WIFI-14410: Wifi7 driver with RAP7110C-341X support
...
Signed-off-by: Wingate Chi <wingate.chi@cybertan.com.tw >
2025-02-06 08:33:33 +01:00
Tanya Singh
426943c1c0
WIFI-14411: Fix typo in bootcount script for Edgecore EAP104
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-02-06 08:31:36 +01:00
John Crispin
6014103032
ucentral-schema: update to latest HEAD
...
Fixes: WIFI-14409
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-06 08:22:39 +01:00
John Crispin
56eee37052
iwinfo: move ucode based version into a feed
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-06 08:22:36 +01:00
Arif Alam
7374c39dea
ath11k: fix STA roaming between radios
...
Fixes: WIFI-14396
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2025-02-06 08:22:35 +01:00
Tanya Singh
b77e80cf14
WIFI-14404: Enable dual boot support on EAP105 and certificate loading on dual boot for EAP104 and OAP101 series
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-02-06 08:22:35 +01:00
Tanya Singh
7544c1921b
WIFI-14406: Fix MAC address assignment on Edgecore EAP105
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-02-06 08:22:35 +01:00
John Crispin
2d45944ba3
hostapd: add script support for acs_exclude_6ghz_non_psc
...
Fixes: WIFI-14187
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-06 08:22:34 +01:00
John Crispin
58d0932dee
hostapd: fix ubus handler crash during teardown
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-06 08:22:34 +01:00
John Crispin
4f0f25ad05
hostapd: improve multi radio ACS
...
Fixes: WIFI-14402
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-06 08:22:33 +01:00
John Crispin
b74f824b3a
mac80211: multiple_bssid is mandatory on 6e when using 11be
...
Fixes: WIFI-14343
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-06 08:22:32 +01:00
John Crispin
3e7fd62fc2
hostapd: fix wifi-7 e-mpsk
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-03 14:26:00 +01:00
John Crispin
4050db8ed6
ipq53xx: disable ujail
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-03 13:01:41 +01:00
John Crispin
8b5a449f6d
ucentral-schema: update to latest HEAD
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-02-03 11:43:33 +01:00
John Crispin
55e3e90513
ucode: fix none wifi-7 builds
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
Ken
0d1ea98328
WIFI-14357 WF189 enable dual image support on wifi7 platform
...
Signed-off-by: Ken <xshi@actiontec.com >
2025-01-30 13:08:28 +01:00
John Crispin
aaaef76d7d
ath12k: fix race condition when generating shadow config for wireless
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
John Crispin
4b09108f72
iwinfo: use new ucode based code for wifi-7
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
John Crispin
c02b5922d9
base-files: add ucidef_set_wireless_macaddr_base()
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
John Crispin
9d54cda767
ipq53xx: fix ethernet link issues
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
John Crispin
1f10af2355
base-files: do not generate default interfaces on firstboot
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
John Crispin
0df07d514e
ipq53xx: fix cig wf189 eth MAC addr assignment
...
Fixes: WIFI-14313
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:28 +01:00
John Crispin
9587fb3fee
only build new ATH12.4 images
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-30 13:08:27 +01:00
John Crispin
4d4d356c1f
qcom: fixes
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
64b1f96721
ucentral-schema: update to latest HEAD
...
61e5802 add multi radio support
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
f3f070acb1
unetd: do not build on wifi-7 AP
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
aa909d9ab8
ucentral-event: fix phy name splitting
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
1de1426a80
kernel-6.1: add checksums
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
8279bae9db
ucode: add multi-radio support
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
3554480103
ucode: update to latest HEAD
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
John Crispin
e4b535f6cb
ath12.4-cs1: update to latest SDK
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-27 07:02:57 +01:00
Ken
ed7e047514
WIFI-14371 WF660A reset button for 5.4 kernel
...
Signed-off-by: Ken <xshi@actiontec.com >
2025-01-27 07:00:38 +01:00
wingate5678
7ced0ea2cc
WIFI-14350 add platfrom into auto build list
...
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-01-27 07:00:05 +01:00
wingate5678
a3a957f688
WIFI-14350 RAP630W-311G fix wifi data memory region
...
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-01-27 07:00:05 +01:00
wingate5678
afcaa6dea2
WIFI-14348 RAP630W-312G fix interface mdio bus assign error
...
Signed-off-by: wingate5678 <wingate.chi@cybertan.com.tw >
2025-01-27 06:59:44 +01:00
Tanya Singh
605406e191
WIFI-14170: Update BDF for Edgecore EAP104
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-01-27 06:59:20 +01:00
Jaspreet Sachdev
d639c02ec1
Reverting to ubuntu-22.04
...
Signed-off-by: Jaspreet Sachdev <jaspreet.sachdev@kinarasystems.com >
2025-01-06 10:50:33 -05:00
Jaspreet Sachdev
cf45b65214
Fix the docker removal of images
...
Signed-off-by: Jaspreet Sachdev <jaspreet.sachdev@kinarasystems.com >
2025-01-06 10:32:52 -05:00
John Crispin
258c26e7e6
ipq60xx: disable sdhci LEDs
...
Fixes: WIFI-14340
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-06 11:49:40 +01:00
John Crispin
ed4f03a1a9
ipq60xx: make LEDs work on CIG WF660
...
Signed-off-by: John Crispin <john@phrozen.org >
2025-01-06 11:38:59 +01:00
Marek Kwaczynski
7477963b1f
ucentral-event: add channel switch handler
...
Add channel switch handler to update hapd object
with new frequency and channel info.
Fixes: WIFI-14336
Signed-off-by: Marek Kwaczynski <marek@shasta.cloud >
2025-01-06 11:02:08 +01:00
Tanya Singh
1cf48ae6d9
mediatek: Set GPIO pins to reset the LTE module on Edgecore EAP112
...
Fixes: WIFI-14098
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2025-01-06 11:01:34 +01:00
Firas Shaari
77144209e9
ucentral-schema: Fix typo qos.json
...
"bandwidth_up", and "bandwidth_down" had typos. The correct attributes are
"bandwidth-up", and "bandwidth-down"
Signed-off-by: Firas Shaari <firas.shaari@shaariconsultancy.com >
2025-01-06 11:00:46 +01:00
Ken
71315b140a
ipq807x: WF188n/WF196 dual image support
...
Fixes: WIFI-14339
Signed-off-by: Ken <xshi@actiontec.com >
2025-01-06 10:59:16 +01:00
Jaspreet Sachdev
8332ba86e1
Removed WallysTech target builds
...
Signed-off-by: Jaspreet Sachdev <jaspreet.sachdev@kinarasystems.com >
2024-12-30 18:03:21 -05:00
John Crispin
6a94323a59
udevmand: update to latest HEAD
...
be0f45e udevmand: fix segmentation fault during deinit
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-19 06:49:31 +01:00
John Crispin
3d43f4fc95
Revert "mediatek-sdk: update SDK to mp2.3 final"
...
This reverts commit 5f1d562f61 .
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-19 06:42:47 +01:00
Tanya Singh
ee80309fc3
mediatek: Fix MAC assignment for eth ports on Edgecore EAP112
...
Fixes: WIFI-14319
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-12-12 08:40:45 +01:00
John Crispin
5f1d562f61
mediatek-sdk: update SDK to mp2.3 final
...
We previously had a beta release.
Fixes: WIFI-14322
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-10 16:42:40 +01:00
Felix Fietkau
5aa975b70c
mediatek-sdk: fix roaming issue
...
Fixes: WIFI-14321
Signed-off-by: Felix Fietkau <nbd@nbd.name >
2024-12-10 16:42:35 +01:00
John Crispin
47f71743f4
cloud_discovery: fix firstcontact fallback mode
...
Fixes: WIFI-14320
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-10 14:40:21 +01:00
steven.lin
e6f20ce347
mediatek: Add SENAO JEAP6500
...
Specifications:
SoC: MediaTek MT7981BA
RF Chipset: MT7976DA @2.4GHz 2T2R
MT7976DA @5ghz 2T2R
RAM: 512MB DDR4 RAM
Flash: SPI-NAND 256 MiB
Ethernet: 2 x 1GbE PHY
Reset Button
Power Source: DC IN 12v, Standard PoE 802.3af/at
LED Indicator: 1 x single color LED (GPIO Control)
Fixes: WIFI-14312
Signed-off-by: steven.lin <steven.lin@senao.com >
2024-12-10 09:48:13 +01:00
jackcybertan
717b0ce261
ipq50xx: Support Cybertan RAP630W-312G
...
Fixes: WIFI-14318
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2024-12-10 09:47:56 +01:00
John Crispin
e3c805a714
workflows/build-dev.yml: remove cybertan board that does not exist
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-09 16:23:37 +01:00
John Crispin
3047402b91
Revert "ath11k: fix multi band roaming"
...
This reverts commit 1d106efd51 .
Fixes: WIFI-14201
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-09 16:22:45 +01:00
John Crispin
4dcd206466
ucentral-schema: update to latest HEAD
...
1ddca91 set schema version to 3.2.1
Signed-off-by: John Crispin <john@phrozen.org >
2024-12-09 08:31:09 +01:00
jackcybertan
d3bb3be528
ramips: Support Cybertan RAP63XC-211G (MTK) solution
...
Fixes: WIFI-14317
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2024-12-09 08:22:27 +01:00
Ken
958ac1b6b0
ipq53xx: WF189 set the eth mac address
...
Fixes: WIFI-14313
Signed-off-by: Ken <xshi@actiontec.com >
2024-12-09 08:19:11 +01:00
John Crispin
405ec9c524
setup.py: add option to define build tree
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-28 15:42:45 +01:00
John Crispin
c321d6f6b1
cloud_discovery: correctly convert timeouts to integers
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-28 08:56:07 +01:00
John Crispin
9a941f2ee3
cloud_discovery: improve firstcontact support
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-28 08:44:13 +01:00
John Crispin
2e27d22a48
ucentral-schema: update wwan.json
...
Fixes: WIFI-14291
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-27 10:28:52 +01:00
John Crispin
9cfa767d7e
ucentral-schema: update to latest HEAD
...
6e3e2df add support for configuring snmpd service using ucentral.
Fixes: WIFI-14152
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-27 10:24:26 +01:00
tanya.singh
78449ee633
mediatek: Add netfilter configs to mt7981, and packages to bring up LTE (wwan) on EAP112
...
Fixes: WIFI-14098
Signed-off-by: tanya.singh <tanya_singh@accton.com >
2024-11-21 06:05:52 +01:00
Arif Alam
5b9863a019
ipq60xx: wf188n: fix reset button
...
Fixes WIFI-14296
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2024-11-21 06:05:52 +01:00
Tanya Singh
5839ae9593
ucentral-schema: Add sleep time of 1 second before sending the command to add GST (NMEA) message to /dev/ttyMSM1 port
...
Fixes: WIFI-14270
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-11-21 06:05:49 +01:00
John Crispin
36ce8d2abb
certificates: stage gateway.json
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
656cc231a8
firstcontact: cloud_discovery will start the service
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
35e073fb59
ucentral-schema: update to latest HEAD
...
b7207ae allow setting cloud_discovery timeouts
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
4bc2b9c821
ucentral-client: add default cloud_discovery timeouts
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
41f4d5e619
ucentral-client: update to latest HEAD
...
8c45f96 send on/offline events to cloud discovery service
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
bd7bb9b74b
busybox: do not use pool servers if DHCP provided NTP
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
80358cf755
profiles: add cloud_discovery to default images
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:16 +01:00
John Crispin
09f3dba767
cloud_discovery: add new service
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:50:15 +01:00
John Crispin
a21f520666
ucentral-schema: update to latest HEAD
...
7ac7ed5 schema: configure sae on 6G when SSID is sae-mixed
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-15 07:49:54 +01:00
John Crispin
7300252b07
hostapd: allow clients to refresh the used PSK if band is not 6G
...
Fixes: WIFI-14256
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-13 15:03:28 +01:00
John Crispin
dcfc17a150
uspot: fix idle timeout handling
...
Fixes: WIFI-14263
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-13 12:40:03 +01:00
John Crispin
e6f1cef31d
ucentral-client: update to latest HEAD
...
c719c1b Include DHCP VSI information in CONNECT message
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-11 07:59:40 +01:00
John Crispin
5c9c516ea1
ucentral-schema: update to latest HEAD
...
f0dfb40 Include DHCP VSI information in state message
44da3d6 Add config for vendor-class and request-options
a21635b always request option 43 and 224 when doing DHCP
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-11 07:58:43 +01:00
Paul White
9cc151165e
ucentral-schema: add udhcpc-vsi-parse script
...
Fixes: WIFI-14271
Signed-off-by: Paul White <paul@shasta.cloud >
2024-11-11 07:46:53 +01:00
Tanya Singh
ccd23cb4c1
hostapd: add afcd respawn
...
Customize the procd instance respawn time parameters to avoid afcd instance
crash while creating afc-location.json
Fixes: WIFI-14261
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-11-11 07:00:41 +01:00
John Crispin
8ecd0c36dd
netifd: various backports from HEAD branch
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-07 17:43:44 +01:00
John Crispin
7820775169
hostapd: more bss color improvements
...
Fixes: WIFI-14259
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-07 16:45:27 +01:00
John Crispin
bf37e6d4c9
mediatek: change default bss_color behaviour
...
Fixes: WIFI-14194
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-07 16:45:27 +01:00
John Crispin
d2845e7664
mediatek: swap eth0/1 on eap111
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-06 09:33:39 +01:00
Tanya Singh
eb9cbaec72
ipq807x: Shorten the kernel backtrace warning msg for ieee80211_bss_get_elem
...
Fixes: WIFI-11006
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-11-06 09:33:21 +01:00
Tanya Singh
f15e10bfdb
ipq95xx: Update phy driver for EAP105 LAN port
...
Fixes: WIFI-14171
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-11-06 09:33:05 +01:00
Ken
08861e1db0
ipq807x: add ARQ114C support
...
Fixes: WIFI-14253
Signed-off-by: Ken <xshi@actiontec.com >
2024-11-06 09:32:40 +01:00
Arif Alam
064fac36b0
uspot: fix setting passwords greater than 16 characters
...
Fixes WIFI-13737
Signed-off-by: Arif Alam <arif.alam@netexperience.com >
2024-11-04 16:31:29 +01:00
John Crispin
786cdeb1c8
ucentral-schema: set 3.2.1 as the version
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-04 15:12:16 +01:00
John Crispin
010e10e7e8
ucentral-state: improve led blink handling
...
Fixes: WIFI-14194
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-04 14:58:33 +01:00
John Crispin
c0095b3ef9
ucentral-client: update to latest HEAD
...
cac85d9 improve blink command
Fixes: WIFI-14194
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-04 14:57:28 +01:00
John Crispin
413885f07b
hostapd: change default bss_color behaviour
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-11-04 14:44:38 +01:00
John Crispin
7b0e041bac
ucentral-client: update to latest HEAD
...
62e0b2d This is a combination of commits for handling compressed configuration.
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-23 13:44:13 +02:00
John Crispin
828cc9e597
ucentral-schema: update to latest HEAD
...
ad1c322 flag to denote compressed commands (configure for now) are supported
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-23 13:43:44 +02:00
John Crispin
008ca9618d
ipq95xx: import ath12.4-cs kernel and drivers
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-20 09:25:13 +02:00
John Crispin
a3bc629684
ipq807x: import QCOM ath11k patch
...
Fixes: WIFI-13926
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-20 09:24:08 +02:00
Tanya Singh
514210fd7e
ipq95xx: Fix mac address assignment for eth0 (wan) and eth1 (lan) interfaces in Edgecore EAP105
...
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-10-20 07:53:37 +02:00
jackcybertan
d6f822a00b
ipq807x: wifi thermal mitigation daemon
...
Fixes: WIFI-14202
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2024-10-20 07:52:50 +02:00
John Crispin
e8b9ec1234
ath11k-firmware: update ipq6018/8074 FW to 2.7.0.1-02409
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-20 07:42:34 +02:00
John Crispin
f1a1d29f99
ucentral-client: update to latest HEAD
...
62e0b2d This is a combination of commits for handling compressed configuration.
3f0ad16 remove CI
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-20 07:20:32 +02:00
Shashi
0c2c59f7c0
.github/workflows/build-dev.yml: add 'udaya_a6-od2'
...
Signed-off-by: Shashi <shashi.kushwaha@inventum.net >
2024-10-09 13:01:15 +02:00
Shashi
ab9a301155
ipq807x: add new files & made change for udaya outdoor wifi-6
...
Signed-off-by: Shashi <shashi.kushwaha@inventum.net >
2024-10-04 16:21:16 +02:00
John Crispin
a6cb3249c4
ucentral-schema: update to latest HEAD
...
a0f26ac disable OKC when MPSK is enabled
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-01 15:51:29 +02:00
John Crispin
6616afca10
wireguard: update mirror URL
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-01 10:25:23 +02:00
John Crispin
40ef18e788
ucentral-schema: update to latest HEAD
...
df95905 do not restart the mpsk daemon upon cfg reload
Signed-off-by: John Crispin <john@phrozen.org >
2024-10-01 10:24:41 +02:00
John Crispin
d2b6fc73f7
wireguard: change download URL to a mirror server
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-09-30 15:36:46 +02:00
jackcybertan
621e9a4551
ipq50xx: RAP630 series support PWM-LED
...
Fixes: WIFI-14153
Signed-off-by: jackcybertan <jack.tsai@cybertan.com.tw >
2024-09-29 16:24:38 +02:00
Steven Lin
d518e5988d
mediatek: Add SENAO IAP4300M
...
Specifications:
SoC: MediaTek MT7986A
RF Chipset: MT7976G @2.4GHz 4T4R
MT7976A @5ghz 4T4R
RAM: 1GB DDR4 RAM (2x 512MB)
Flash: SPI-NAND 256 MiB
Ethernet: 1x 2.5GbE PHY
Reset Button
Power Source: DC IN 12v, Standard PoE 802.3af/at
LED Indicator: 4 x single color LED (GPIO Control)
Fixes: WIFI-13983
Signed-off-by: Steven Lin <steven.lin@senao.com >
2024-09-27 15:42:30 +02:00
John Crispin
911da1bb41
mpskd: kick all 6G clients upon reload
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-09-23 14:57:21 +02:00
John Crispin
b2e778221e
ucentral-schema: update to latest HEAD
...
baeef76 Revert "ucentral-schema: add support for configuring snmpd service using ucentral."
684a1aa firewall: upon up NAT'ed port 53 for ipv6
83a30b4 enable reconf for mpsk interfaces
Signed-off-by: John Crispin <john@phrozen.org >
2024-09-23 14:55:20 +02:00
John Crispin
34b0405238
ucentral-schema: update to latest HEAD
...
42e59d5 Add system-password to the schema
8b3701b ucentral-schema: add support for configuring snmpd service using ucentral.
Signed-off-by: John Crispin <john@phrozen.org >
2024-09-22 14:14:57 +02:00
John Crispin
0d6245fbcf
ucode: improve hostpkg compile
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-09-22 14:05:10 +02:00
John Crispin
207dba8af6
hostapd: make patched hostapd available for all MTK based boards
...
Signed-off-by: John Crispin <john@phrozen.org >
2024-09-22 13:45:23 +02:00
Tanya Singh
09e6ea31a5
ipq53xx: Modify DTS for Edgecore EAP105 to read NOR flash correctly
...
Fixes: WIFI-14146
Signed-off-by: Tanya Singh <tanya_singh@accton.com >
2024-09-19 09:29:30 +02:00