forked from Ivasoft/openwrt
ath79: add support for Alcatel HH40V
The Alcatel HH40V is a CAT4 LTE router used by various ISPs. Specifications ============== SoC: QCA9531 650MHz RAM: 128MiB Flash: 32MiB SPI NOR LAN: 1x 10/100MBit WAN: 1x 10/100MBit LTE: MDM9607 USB 2.0 (rndis configuration) WiFi: 802.11n (SoC integrated) MAC address assignment ====================== There are three MAC addresses stored in the flash ROM, the assignment follows stock. The MAC on the label is the WiFi MAC address. Installation (TFTP) =================== 1. Connect serial console 2. Configure static IP to 192.168.1.112 3. Put OpenWrt factory.bin file as firmware-system.bin 4. Press Power + WPS and plug in power 5. Keep buttons pressed until TFTP requests are visible 6. Wait for the system to finish flashing and wait for reboot 7. Bootup will fail as the kernel offset is wrong 8. Run "setenv bootcmd bootm 0x9f150000" 9. Reset board and enjoy OpenWrt Installation (without UART) =========================== Installation without UART is a bit tricky and requires several steps too long for the commit message. Basic steps: 1. Create configure backup 2. Patch backup file to enable SSH 3. Login via SSH and configure the new bootcmd 3. Flash OpenWrt factory.bin image manually (sysupgrade doesn't work) More detailed instructions will be provided on the Wiki page. Tested by: Christian Heuff <christian@heuff.at> Signed-off-by: Andreas Böhler <dev@aboehler.at>
This commit is contained in:
committed by
Hauke Mehrtens
parent
70000ab509
commit
097f350aeb
@@ -10,6 +10,12 @@ case "$board" in
|
||||
ucidef_set_led_netdev "lan" "LAN" "orange:eth0" "eth0"
|
||||
ucidef_set_led_switch "wan" "WAN" "orange:eth1" "switch0" "0x04"
|
||||
;;
|
||||
alcatel,hh40v)
|
||||
ucidef_set_led_netdev "lan_data" "LAN Data" "green:lan" "eth1" "tx rx"
|
||||
ucidef_set_led_netdev "lan_link" "LAN Link" "orange:lan" "eth1" "link"
|
||||
ucidef_set_led_netdev "wan_data" "WAN Data" "green:wan" "eth0" "tx rx"
|
||||
ucidef_set_led_netdev "wan_link" "WAN Link" "orange:wan" "eth0" "link"
|
||||
;;
|
||||
alfa-network,ap121f|\
|
||||
alfa-network,ap121fe|\
|
||||
avm,fritz450e|\
|
||||
|
||||
@@ -217,6 +217,7 @@ ath79_setup_interfaces()
|
||||
ucidef_add_switch "switch0" \
|
||||
"0@eth0" "1:lan:1" "3:lan:4" "4:lan:3" "5:lan:2" "2:wan"
|
||||
;;
|
||||
alcatel,hh40v|\
|
||||
comfast,cf-e110n-v2|\
|
||||
comfast,cf-e120a-v3|\
|
||||
comfast,cf-e314n-v2|\
|
||||
|
||||
Reference in New Issue
Block a user