diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2019-03-14 23:46:43 +0900 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2019-03-21 00:57:20 +0100 |
commit | 5c112582974218fd4e4624b36dbdeb8edeff55b7 (patch) | |
tree | 1e3272497ca44d9bf9803966b3d4a2c959cae3a2 /target/linux/ramips/base-files | |
parent | d2c3eb1e431fa8b1421c3633576781e5d4eede58 (diff) | |
download | upstream-5c112582974218fd4e4624b36dbdeb8edeff55b7.tar.gz upstream-5c112582974218fd4e4624b36dbdeb8edeff55b7.tar.bz2 upstream-5c112582974218fd4e4624b36dbdeb8edeff55b7.zip |
ramips: add support for I-O DATA WN-AC733GR3
I-O DATA WN-AC733GR3 is a 2.4/5 GHz band 11ac router, based on
MediaTek MT7620A.
Specification
- SoC : MediaTek MT7620A
- RAM : DDR2 64 MiB
- Flash : SPI-NOR 8 MiB
- WLAN : 2.4/5 GHz
- 2.4 GHz : MT7620A (SoC), 2T2R
- 5 GHz : MT7610E, 1T1R
- Ethernet : 10/100/1000 Mbps (RTL8367RB)
- LED/key : 4x/4x (2x buttons, 1x slide-switch)
- UART : through-hole on PCB
- J1: Vcc, RX, GND, TX from LED side
- 57600n8
Flash instruction using factory image:
1. Boot WN-AC733GR3 normaly
2. Access to "http://192.168.0.1/" and open firmware update page
("ファームウェア")
3. Select the OpenWrt factory image and click update ("更新") button
to perform firmware update
4. Wait ~150 seconds to complete flashing
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target/linux/ramips/base-files')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/01_leds | 3 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/02_network | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/01_leds b/target/linux/ramips/base-files/etc/board.d/01_leds index 9cca231ab6..69b95ee540 100755 --- a/target/linux/ramips/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/base-files/etc/board.d/01_leds @@ -196,7 +196,8 @@ ht-tm02) ucidef_set_led_netdev "eth" "Ethernet" "$boardname:green:lan" "eth0" set_wifi_led "$boardname:blue:wlan" ;; -iodata,wn-ac1167gr) +iodata,wn-ac1167gr|\ +iodata,wn-ac733gr3) ucidef_set_led_wlan "wlan5g" "WLAN5G" "$boardname:green:wlan5g" "phy0radio" ucidef_set_led_wlan "wlan2g" "WLAN2G" "$boardname:green:wlan2g" "phy1radio" ;; diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network index 890efa0d93..20a50cc6de 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -324,7 +324,8 @@ ramips_setup_interfaces() ucidef_add_switch "switch0" \ "0:lan" "1:lan" "5:wan" "6@eth0" ;; - iodata,wn-ac1167gr) + iodata,wn-ac1167gr|\ + iodata,wn-ac733gr3) ucidef_add_switch "switch1" \ "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "0:wan" "6@eth0" ;; @@ -546,7 +547,8 @@ ramips_setup_macs() [ -n "$lan_mac" ] || lan_mac=$(cat /sys/class/net/eth0/address) wan_mac=$(macaddr_add "$lan_mac" 1) ;; - iodata,wn-ac1167gr) + iodata,wn-ac1167gr|\ + iodata,wn-ac733gr3) wan_mac=$(macaddr_add "$(mtd_get_mac_binary Factory 4)" -1) ;; iodata,wn-ax1167gr|\ |