Skip to content

Commit 51643a7

Browse files
committed
qualcommax: ipq50x: add support for Xunison D50 5G
Hardware specifications: - SoC: Qualcomm IPQ5018 - RAM: 512MiB (800MHz) - Flash: ESMT F50D1G41LB 128MiB - Ethernet: 4x 1G RJ45 ports - USB: 2x USB-A 3.0 ports (1x M.2) - WiFi1: QCN5018 2.4GHz - WiFi2: QCN9024 5GHz - LEDs: 1x Mesh 1x 5G 1x 4G 1x WiFi 1x Internet 1x Power - Power: DC 12V - Buttons: Reset, WPS, Power Flash Instructions: 1. The Xunison D50 5G Router comes with a web version of U-Boot. Users can flash the OpenWrt firmware via http://192.168.1.254. (i) Set the host IP address to 192.168.1.2. (ii) Open http://192.168.1.254. (iii) Upload the openwrt-qualcommax-ipq50xx-xunison_d50-5g-squashfs-factory.ubi firmware. The router will reboot itself once the process is complete. 2. Alternatively, users can upload the openwrt-qualcommax-ipq50xx-xunison_d50-5g-squashfs-factory.ubi firmware to /tmp and execute the sysupgrade command. Signed-off-by: YiZhen Choo <yizhen.c02@gmail.com>
1 parent 6c8cc86 commit 51643a7

19 files changed

+1236
-1
lines changed

package/boot/uboot-envtools/files/qualcommax_ipq50xx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ touch /etc/config/ubootenv
88
board=$(board_name)
99

1010
case "$board" in
11+
xunison,d50-5g)
12+
idx="$(find_mtd_index 0:APPSBLENV)"
13+
[ -n "$idx" ] && \
14+
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x40000" "0x20000"
15+
;;
1116
linksys,mr5500|\
1217
linksys,mx2000|\
1318
linksys,mx5500|\

package/firmware/ipq-wifi/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ ALLWIFIBOARDS:= \
6767
wallys_dr40x9 \
6868
xiaomi_ax3600 \
6969
xiaomi_ax9000 \
70+
xunison_d50-5g \
7071
yyets_le1 \
7172
yuncore_ax880 \
7273
yuncore_fap650 \
@@ -208,6 +209,7 @@ $(eval $(call generate-ipq-wifi-package,tplink_eap660hd-v1,TP-Link EAP660 HD v1)
208209
$(eval $(call generate-ipq-wifi-package,wallys_dr40x9,Wallys DR40X9))
209210
$(eval $(call generate-ipq-wifi-package,xiaomi_ax3600,Xiaomi AX3600))
210211
$(eval $(call generate-ipq-wifi-package,xiaomi_ax9000,Xiaomi AX9000))
212+
$(eval $(call generate-ipq-wifi-package,xunison_d50-5g,Xunison D50 5G))
211213
$(eval $(call generate-ipq-wifi-package,yyets_le1,YYeTs LE1))
212214
$(eval $(call generate-ipq-wifi-package,yuncore_ax880,Yuncore AX880))
213215
$(eval $(call generate-ipq-wifi-package,yuncore_fap650,Yuncore FAP650))
128 KB
Binary file not shown.
128 KB
Binary file not shown.
128 KB
Binary file not shown.
128 KB
Binary file not shown.

0 commit comments

Comments
 (0)