-
Notifications
You must be signed in to change notification settings - Fork 136
4.1.1 merge from main #951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: John Crispin <[email protected]>
Signed-off-by: John Crispin <[email protected]>
Signed-off-by: John Crispin <[email protected]>
…630w-312g mt7621: enable pstore for rap63xc-211g Signed-off-by: jackcybertan <[email protected]>
Fixes: WIFI-15000 Signed-off-by: Justin.Guo <[email protected]>
Fixes: WIFI-14493 Signed-off-by: pratibha <[email protected]>
a1e7571 state: fix unassigned access Signed-off-by: John Crispin <[email protected]>
Fixes: WIFI-14455 Signed-off-by: pratibha <[email protected]>
Signed-off-by: YenLin Pan <[email protected]>
Signed-off-by: Jimmy Cheng <[email protected]>
Signed-off-by: Jimmy Cheng <[email protected]>
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 <[email protected]>
Fixes: WIFI-15124 Signed-off-by: jackcybertan <[email protected]>
only support 2-band mode Fixes: WIFI-15130 Signed-off-by: Justin.Guo <[email protected]>
Support multiple ssid <-> upstream bindings Fixes: WIFI-15125 Signed-off-by: Kumiko18 <[email protected]>
Fixes: WIFI-15138 Signed-off-by: wingate5678 <[email protected]>
Fixes: WIFI-14694 Signed-off-by: Tanya Singh <[email protected]>
Fixes: WIFI-15120 Signed-off-by: wingate5678 <[email protected]>
Commit 2e4972e ("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 <[email protected]>
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 <[email protected]>
…y 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 <[email protected]>
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 <[email protected]>
Signed-off-by: Jimmy Cheng <[email protected]>
**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 <[email protected]>
Signed-off-by: Sebastian Huang <[email protected]>
100c045 Fix cloud cannot show association list when WDS-AP in state.uc 168f6a4 dhcp_inject: Support multiple upstream Signed-off-by: John Crispin <[email protected]>
… using hostapd_cli chan_switch command Fixes: WIFI-14859 Signed-off-by: Tanya Singh <[email protected]>
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 <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.