Specifications: SOC: Qualcomm IPQ5018 (64-bit dual-core ARM Cortex-A53 @ 1.0Ghz) Memory: 512MB DDR3L Standard: 802.11ax/ac/b/g/n Flash: SPI NOR 8MB (Winbond W25Q64DW) + NAND 128MB (Winbond W25N01GWZEIG) 2.4G Frequency: 2.4GHz - 2.484GHz 2.4G Wi-Fi standard: 802.11b/g/n/ax 5.8G Frequency: 4.9~5.9G 5.8G Wi-Fi Standard: 802.11 a/n/ac/ax Interface: Optional 1(Without 8081): 1 * 10/100 /1000Mbps RJ45 WAN Port and PoE port; 1* Gigabit Console port; Optional 2(With 8081): 1 * 10/100/1000/2500Mbps RJ45 WAN port and PoE port, 1*10/100/1000Mbps LAN port Buttons: 1 * Reset button, press 10 seconds to revert to default setting Antenna: Build in 4*4dBi dual band MIMO Antenna Data Rate: 3000Mbps (2.4G 600Mbps, 5.8G 2400Mbps) End Users: 128+ 2.4G RF Power: ≤ 23dBm 5.8G RF Power: ≤ 23dBm DC: 12V----2A PoE: 48V (IEEE 802.3at) LED Light: Sys, WAN, LAN Power Consumption: ≤ 20W BACKUP YOUR STOCK FIRMWARE: - Put openwrt-*-initramfs-uImage.itb 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=ax830 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-uImage.itb 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 factory.ubi image method - Put factory.ubi to your TFTP server and enter u-boot cli and exec these commands: ``` tftpboot <your_tftp_server_ip>:factory.ubi #After downloading is finished: flash rootfs flash rootfs_1 reset ``` Signed-off-by: Shubham Vishwakarma <shubhamvis98@fossfrog.in> Link: https://github.com/openwrt/openwrt/pull/18968 Signed-off-by: Robert Marko <robimarko@gmail.com>
167 lines
4.5 KiB
Makefile
167 lines
4.5 KiB
Makefile
DEVICE_VARS += BOOT_SCRIPT
|
|
|
|
define Build/mstc-header
|
|
$(eval version=$(word 1,$(1)))
|
|
$(eval hdrlen=$(if $(word 2,$(1)),$(word 2,$(1)),0x400))
|
|
gzip -c $@ | tail -c8 > $@.crclen
|
|
( \
|
|
printf "CMOC"; \
|
|
tail -c+5 $@.crclen; head -c4 $@.crclen; \
|
|
printf '$(call toupper,$(LINUX_KARCH)) $(VERSION_DIST) Linux-$(LINUX_VERSION)' | \
|
|
dd bs=64 count=1 conv=sync 2>/dev/null; \
|
|
printf "$(version)" | \
|
|
dd bs=64 count=1 conv=sync 2>/dev/null; \
|
|
dd if=/dev/zero bs=$$(($(hdrlen) - 0x8c)) count=1 2>/dev/null; \
|
|
cat $@; \
|
|
) > $@.new
|
|
mv $@.new $@
|
|
rm -f $@.crclen
|
|
endef
|
|
|
|
define Device/elecom_wrc-x3000gs2
|
|
$(call Device/FitImageLzma)
|
|
DEVICE_VENDOR := ELECOM
|
|
DEVICE_MODEL := WRC-X3000GS2
|
|
DEVICE_DTS_CONFIG := config@mp03.3
|
|
SOC := ipq5018
|
|
KERNEL_IN_UBI := 1
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
IMAGE_SIZE := 52480k
|
|
NAND_SIZE := 128m
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := append-ubi | qsdk-ipq-factory-nand | \
|
|
mstc-header 4.04(XZF.0)b90 | elecom-product-header WRC-X3000GS2
|
|
DEVICE_PACKAGES := ath11k-firmware-qcn6122 ipq-wifi-elecom_wrc-x3000gs2
|
|
endef
|
|
TARGET_DEVICES += elecom_wrc-x3000gs2
|
|
|
|
define Device/glinet_gl-b3000
|
|
$(call Device/FitImage)
|
|
DEVICE_VENDOR := GL.iNet
|
|
DEVICE_MODEL := GL-B3000
|
|
SOC := ipq5018
|
|
KERNEL_IN_UBI := 1
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
NAND_SIZE := 128m
|
|
DEVICE_DTS_CONFIG := config@mp03.5-c1
|
|
SUPPORTED_DEVICES += b3000
|
|
BOOT_SCRIPT:= glinet_gl-b3000.bootscript
|
|
IMAGES := factory.img sysupgrade.bin
|
|
IMAGE/factory.img := append-ubi | gl-qsdk-factory | append-metadata
|
|
DEVICE_PACKAGES := \
|
|
ath11k-firmware-qcn6122 \
|
|
ipq-wifi-glinet_gl-b3000 \
|
|
dumpimage
|
|
endef
|
|
TARGET_DEVICES += glinet_gl-b3000
|
|
|
|
define Device/iodata_wn-dax3000gr
|
|
$(call Device/FitImageLzma)
|
|
DEVICE_VENDOR := I-O DATA
|
|
DEVICE_MODEL := WN-DAX3000GR
|
|
DEVICE_DTS_CONFIG := config@mp03.3
|
|
SOC := ipq5018
|
|
KERNEL_IN_UBI := 1
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
IMAGE_SIZE := 52480k
|
|
NAND_SIZE := 128m
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := append-ubi | qsdk-ipq-factory-nand | \
|
|
mstc-header 4.04(XZH.1)b90 0x480
|
|
DEVICE_PACKAGES := ath11k-firmware-qcn6122 ipq-wifi-iodata_wn-dax3000gr
|
|
endef
|
|
TARGET_DEVICES += iodata_wn-dax3000gr
|
|
|
|
define Device/linksys_ipq50xx_mx_base
|
|
$(call Device/FitImageLzma)
|
|
DEVICE_VENDOR := Linksys
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
KERNEL_SIZE := 8192k
|
|
IMAGE_SIZE := 83968k
|
|
NAND_SIZE := 256m
|
|
SOC := ipq5018
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=$$$$(DEVICE_MODEL)
|
|
endef
|
|
|
|
define Device/linksys_mr5500
|
|
$(call Device/linksys_ipq50xx_mx_base)
|
|
DEVICE_MODEL := MR5500
|
|
DEVICE_DTS_CONFIG := config@mp03.1
|
|
DEVICE_PACKAGES := kmod-ath11k-pci \
|
|
ath11k-firmware-qcn9074 \
|
|
ipq-wifi-linksys_mr5500 \
|
|
kmod-usb-ledtrig-usbport
|
|
endef
|
|
TARGET_DEVICES += linksys_mr5500
|
|
|
|
define Device/linksys_mx2000
|
|
$(call Device/linksys_ipq50xx_mx_base)
|
|
DEVICE_MODEL := MX2000
|
|
DEVICE_DTS_CONFIG := config@mp03.5-c1
|
|
DEVICE_PACKAGES := ath11k-firmware-qcn6122 \
|
|
ipq-wifi-linksys_mx2000
|
|
endef
|
|
TARGET_DEVICES += linksys_mx2000
|
|
|
|
define Device/linksys_mx5500
|
|
$(call Device/linksys_ipq50xx_mx_base)
|
|
DEVICE_MODEL := MX5500
|
|
DEVICE_DTS_CONFIG := config@mp03.1
|
|
DEVICE_PACKAGES := kmod-ath11k-pci \
|
|
ath11k-firmware-qcn9074 \
|
|
ipq-wifi-linksys_mx5500
|
|
endef
|
|
TARGET_DEVICES += linksys_mx5500
|
|
|
|
define Device/linksys_spnmx56
|
|
$(call Device/linksys_ipq50xx_mx_base)
|
|
DEVICE_MODEL := SPNMX56
|
|
DEVICE_DTS_CONFIG := config@mp03.1
|
|
DEVICE_PACKAGES := kmod-ath11k-pci \
|
|
ath11k-firmware-qcn9074 \
|
|
ipq-wifi-linksys_spnmx56
|
|
endef
|
|
TARGET_DEVICES += linksys_spnmx56
|
|
|
|
define Device/xiaomi_ax6000
|
|
$(call Device/FitImage)
|
|
$(call Device/UbiFit)
|
|
DEVICE_VENDOR := Xiaomi
|
|
DEVICE_MODEL := AX6000
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
DEVICE_DTS_CONFIG := config@mp03.1
|
|
SOC := ipq5018
|
|
KERNEL_SIZE := 36864k
|
|
NAND_SIZE := 128m
|
|
DEVICE_PACKAGES := kmod-ath11k-pci \
|
|
ath11k-firmware-qcn9074 \
|
|
kmod-ath10k-ct-smallbuffers \
|
|
ath10k-firmware-qca9887-ct \
|
|
ipq-wifi-xiaomi_ax6000
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
|
|
ARTIFACTS := initramfs-factory.ubi
|
|
ARTIFACT/initramfs-factory.ubi := append-image-stage initramfs-uImage.itb | ubinize-kernel
|
|
endif
|
|
endef
|
|
TARGET_DEVICES += xiaomi_ax6000
|
|
|
|
define Device/yuncore_ax830
|
|
$(call Device/FitImage)
|
|
$(call Device/UbiFit)
|
|
DEVICE_VENDOR := Yuncore
|
|
DEVICE_MODEL := AX830
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SOC := ipq5018
|
|
DEVICE_DTS_CONFIG := config@mp03.5-c1
|
|
DEVICE_PACKAGES := ath11k-firmware-ipq5018 \
|
|
ath11k-firmware-qcn6122 \
|
|
ipq-wifi-yuncore_ax830
|
|
endef
|
|
TARGET_DEVICES += yuncore_ax830
|