mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 14:50:15 +04:00
b33959a668
The EN751627 EcoNet subtarget consists of the EN7516 DSL SoC and the (rare) EN7527 xPON SoC. We currently support pci / wifi, usb and flash, but the EN751221 eth driver is not portable to this family right now. Zyxel EX3301-T0 is a wifi router based on the EN7516, it is a DSL SoC but lacks the DSL port. Installation instructions: 1. Serial access is required, stop the Zyxel bootloader. 2. Use ATENv3 https://github.com/cjdelisle/ATENv3 to unlock bootloader 3. "ATLD x" on the prompt to start a TFTP server 4. Connect ethernet cable from any lan (yellow) port on modem to a device. 5. On your device, configure network to 192.168.1.2/30 6. On your device, send TRX file to 192.168.1.1 with name x, i.e. tftp -p -l ./econet/tclinux -r x 192.168.1.1 7. On modem, you should see a line like this: "Total 8022324 (0x7A6934) bytes received" note the hex value 8. "ATGU" to enter econet bootloader 9. "flash 80000 80020000 <the hex number without 0x>" For example: flash 80000 80020000 7A6934 10. "reboot 1" -- start the system If it boots back into the factory OS, you need to switch OS, from the ZHAL prompt: 1. "ATCB" -- load data from flash 2. "ATCF 0" -- switch to OS 0 3. "ATBT 1" -- enable flash write 4. "ATSB" -- save data 5. "ATSR 1" -- reboot system Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr> Link: https://github.com/openwrt/openwrt/pull/22945 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
25 lines
534 B
Makefile
25 lines
534 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2009-2025 OpenWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
BOARD:=econet
|
|
BOARDNAME:=EcoNet EN75xx MIPS
|
|
FEATURES:=dt source-only squashfs nand usb
|
|
SUBTARGETS:=en751221 en751627 en7528
|
|
|
|
KERNEL_PATCHVER:=6.12
|
|
|
|
define Target/Description
|
|
Build firmware image for EcoNet EN75xx MIPS based boards.
|
|
endef
|
|
|
|
# include the profiles
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
# nand-utils is used by base-files/sbin/en75_chboot
|
|
DEFAULT_PACKAGES += nand-utils kmod-econet-eth
|
|
|
|
$(eval $(call BuildTarget))
|