diff options
author | Kyoungkyu Park <choryu.park@choryu.space> | 2021-12-25 04:48:22 +0900 |
---|---|---|
committer | Sungbo Eo <mans0n@gorani.run> | 2022-01-15 20:05:46 +0900 |
commit | 6041c693dd4660f1585322c182e83479afb3c381 (patch) | |
tree | 8cd20014371e868716acca55f8e62a34cd2dd6c7 /target/linux/ramips/mt7620 | |
parent | 7f7705923a8299323057e78ccae4473b5bb05807 (diff) | |
download | upstream-6041c693dd4660f1585322c182e83479afb3c381.tar.gz upstream-6041c693dd4660f1585322c182e83479afb3c381.tar.bz2 upstream-6041c693dd4660f1585322c182e83479afb3c381.zip |
ramips: add support for HUMAX E2
HUMAX E2 (also known as HUMAX QUANTUM E2) is a 2.4/5GHz band AC router,
based on MediaTek MT7620A.
Specifications:
- SoC: MT7620A
- RAM: DDR2 64MB
- Flash: SPI NOR 8MB (MXIC MX25L6405D)
- WiFi:
- 2.4GHz: SoC internal
- 5GHz: MT7610E
- Ethernet: 1x 10/100Mbps
- Switch: SoC internal
- UART: J2 (57600 8N1)
- pinout: [3V3] (RXD) (GND) (TXD)
Installation and Recovery via TFTP:
1. Connect ethernet cable between Router port and PC Ethernet port.
2. Set your computer to a static IP **192.168.1.1**
3. Turn the device off and wait a few seconds. Hold the WPS button on front
of device and insert power.
4. Send a firmware image to **192.168.1.6** using TFTP.
You can use any TFTP client. (tftp, curl, Tftpd64...)
5. Wait until Power LED stop flashing. **DO NOT TURN OFF DEVICE!**
The device will be automatically rebooted.
Signed-off-by: Kyoungkyu Park <choryu.park@choryu.space>
Diffstat (limited to 'target/linux/ramips/mt7620')
-rw-r--r-- | target/linux/ramips/mt7620/base-files/etc/board.d/01_leds | 3 | ||||
-rw-r--r-- | target/linux/ramips/mt7620/base-files/etc/board.d/02_network | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds b/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds index 694f3d1541..8d438538fc 100644 --- a/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/mt7620/base-files/etc/board.d/01_leds @@ -125,6 +125,9 @@ hnet,c108) ucidef_set_led_netdev "lan" "lan" "green:lan" "eth0" ucidef_set_led_netdev "modem" "modem" "green:modem" "wwan0" ;; +humax,e2) + ucidef_set_led_netdev "lan" "lan" "green:lan" "eth0" + ;; iodata,wn-ac1167gr|\ iodata,wn-ac733gr3) ucidef_set_led_wlan "wlan5g" "WLAN5G" "green:wlan5g" "phy0radio" diff --git a/target/linux/ramips/mt7620/base-files/etc/board.d/02_network b/target/linux/ramips/mt7620/base-files/etc/board.d/02_network index a64891f94a..ea8394ec59 100644 --- a/target/linux/ramips/mt7620/base-files/etc/board.d/02_network +++ b/target/linux/ramips/mt7620/base-files/etc/board.d/02_network @@ -100,7 +100,8 @@ ramips_setup_interfaces() "0:lan:1" "1:lan:2" "2:lan:3" "3:lan:4" "4:wan:5" "6@eth0" ;; comfast,cf-wr800n|\ - hnet,c108) + hnet,c108|\ + humax,e2) ucidef_add_switch "switch0" \ "4:lan" "6@eth0" ;; |