Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynalink DL-WRX36 is a AX WIFI router with 4 1G and 1 2.5G ports. Specifications: • CPU: Qualcomm IPQ8072A Quad core Cortex-A53 2.2GHz • RAM: 1024MB of DDR3 • Storage: 256MB Nand • Ethernet: 4x 1G RJ45 ports (QCA8075) + 1 2.5G Port (QCA8081) • WLAN: 2.4GHz: Qualcomm QCN5024 2x2 802.11b/g/n/ax 1174 Mbps PHY rate 5GHz: Qualcomm QCN5054 4x4 802.11a/b/g/n/ac/ax 2402 PHY rate • 1x USB 3.0 • 1 gpio-controlled dual color led (blue/red) • Buttons: 1x soft reset / 1x WPS • Power: 12V DC jack A poulated serial header is onboard (J1004) the connector size is a 4-pin 2.0 mm JST PH. RX/TX is working, u-boot bootwait is active, secure boot is enabled. Note: serial is completely deactivated in the stock firmware image. Installation Instructions: • obtain serial access • stop auto boot • saveenv (write the default env to the flash) • check which mtd-part is rootfs by invoking "smeminfo" It's either: 18: rootfs 0x0000ffff 0x7a00000 0x6100000 or: 18: rootfs 0x0000ffff 0x1000000 0x6100000 Set mtdids: setenv mtdids nand0=nand0 if rootfs is: 0x7a00000 0x6100000 setenv mtdparts mtdparts=nand0:0x6100000@0x7a00000(fs) if rootfs is: 0x1000000 0x6100000 setenv mtdparts mtdparts=nand0:0x6100000@0x1000000(fs) saveenv • tftpboot the initramfs image (openwrt-ipq807x-generic-dynalink_dl-wrx36-initramfs-fit-uImage.itb) • bootm • Check the rootfs partition number: cat /proc/mtd rootfs should be mtd18 • SCP the factory image to the device and do a ubiformat to the right rootfs partition: ubiformat /dev/mtd18 -y -f /path_to/factory_image • Due to secure boot is active, we need to change the bootcmd to: fw_setenv bootcmd "setenv bootargs console=ttyMSM0,115200n8 ubi.mtd=rootfs root=mtd:rootfs rootfstype=squashfs rootwait; ubi part fs; ubi read 0x44000000 kernel; bootm 0x44000000#config@rt5010w-d350-rev0" • reboot Note: this PR adds only single partition support, that means sysupgrade is upgrading the current rootfs partition Signed-off-by: Dirk Buchwalder <[email protected]>
- Loading branch information