[openwrt/openwrt] mediatek: add Zyxel NWA90AX PRO model identifier

LEDE Commits lede-commits at lists.infradead.org
Thu Nov 20 14:18:17 PST 2025


hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/2cc8d3e382c0b8b919cef2e9f1cfec9ec7954150

commit 2cc8d3e382c0b8b919cef2e9f1cfec9ec7954150
Author: James Davis <james.l.davis at outlook.com>
AuthorDate: Thu Nov 13 08:51:49 2025 -0700

    mediatek: add Zyxel NWA90AX PRO model identifier
    
    Adds the 81E1 model identifier for the Zyxel NWA90AX Pro to allow factory flashing to these devices.
    
    Device tree output of the latest OEM firmware upgrade
    -----------------------------------------------------
    /dts-v1/;
    
    / {
            timestamp = <0x6860779e>;
            description = [00];
            compat-models = [81 e1 ff ff ff ff ff ff ff ff];
            fw_version = "7.10(###.3)";
    
            images {
    
    Device tree of the OpenWRT factory firmware after change
    --------------------------------------------------------
    /dts-v1/;
    
    / {
            timestamp = <0x68f513d9>;
            description = "Zyxel FIT (Flattened Image Tree)";
            compat-models = [80 e1 81 e1 ff ff ff ff ff ff];
            fw_version = "9.99(###.1)";
            address-cells = <0x01>;
    
            images {
    
    Fixes: e34e874a11f0 ("mediatek: add support for Zyxel NWA90AX PRO")
    Signed-off-by: James Davis <james.l.davis at outlook.com>
    Link: https://github.com/openwrt/openwrt/pull/20759
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 target/linux/mediatek/image/filogic.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/linux/mediatek/image/filogic.mk b/target/linux/mediatek/image/filogic.mk
index 32e79ec5de..3026b0a23f 100644
--- a/target/linux/mediatek/image/filogic.mk
+++ b/target/linux/mediatek/image/filogic.mk
@@ -110,7 +110,7 @@ endef
 
 define Build/zyxel-nwa-fit-filogic
 	$(TOPDIR)/scripts/mkits-zyxel-fit-filogic.sh \
-		$@.its $@ "80 e1 ff ff ff ff ff ff ff ff"
+		$@.its $@ "80 e1 81 e1 ff ff ff ff ff ff"
 	PATH=$(LINUX_DIR)/scripts/dtc:$(PATH) mkimage -f $@.its $@.new
 	@mv $@.new $@
 endef




More information about the lede-commits mailing list