diff options
author | Hanqing Wong <hquu@outlook.com> | 2017-03-11 15:44:33 +0800 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-03-12 09:28:05 +0100 |
commit | 38bee61dab029a7608088f64da71c19cfc8cf267 (patch) | |
tree | b54962eab8dc64eb7976bc1c37348c0577b81791 /target/linux/ramips/base-files | |
parent | 562484f25c535ef01a004d11b23243a36bcc50c9 (diff) | |
download | upstream-38bee61dab029a7608088f64da71c19cfc8cf267.tar.gz upstream-38bee61dab029a7608088f64da71c19cfc8cf267.tar.bz2 upstream-38bee61dab029a7608088f64da71c19cfc8cf267.zip |
ramips: add support for Netgear R6220
This patch adds support for the Netgear R6220, aka Netgear AC1200 and
R6220-100NAS.
Specification:
- SoC: MediaTek MT7621ST (880 MHz)
- Falsh: 128 MiB (Macronix MX30LF1G08AA-TI)
- RAM: 128 MiB (Nanya NT5CB64M16FP-DH)
- Wireless: MediaTek MT7603EN b/g/n , MediaTek MT7612EN an+ac
- LAN speed: 10/100/1000
- LAN ports: 4
- WAN speed: 10/100/1000
- WAN ports: 1
- Serial baud rate of Bootloader and factory firmware: 57600
Installation through telnet:
- Copy kernel.bin and rootfs.bin to a USB flash disk, plug to usb port
on the router.
- Enable telnet with link: http://192.168.1.1/setup.cgi?todo=debug
(login if required, default: admin password)
- You will see "Debug Enabled!"
- Telnet 192.168.1.1 and login with "root"
- ls /mnt/shares/ to find out path of your USB disk. 'myUdisk' for
example.
- cd /mnt/shares/myUdisk
- mtd_write write rootfs.bin Rootfs
- mtd_write write kernel.bin Kernel
- reboot
nmrpflash can be used to recover to the netgear firmware if a broken
image was flashed.
Signed-off-by: Hanqing Wong <hquu@outlook.com>
Diffstat (limited to 'target/linux/ramips/base-files')
5 files changed, 17 insertions, 1 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 e01ba5f602..66f0c97437 100755 --- a/target/linux/ramips/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/base-files/etc/board.d/01_leds @@ -291,6 +291,11 @@ px-4885) set_wifi_led "$board:orange:wifi" set_usb_led "$board:blue:storage" ;; +r6220) + ucidef_set_led_netdev "wan" "wan" "$board:green:wan" eth0.2 + set_wifi_led "$board:green:wifi" + set_usb_led "$board:green:usb" + ;; re6500) ucidef_set_led_default "power" "power" "$board:white:power" "1" ucidef_set_led_default "wifi" "wifi" "$board:orange:wifi" "1" 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 9d3a9de292..828f461c4f 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -95,6 +95,7 @@ ramips_setup_interfaces() pbr-m1|\ psg1208|\ psg1218|\ + r6220|\ sap-g3200u3|\ sk-wb8|\ vr500|\ @@ -394,6 +395,10 @@ ramips_setup_macs() lan_mac=$(mtd_get_mac_binary factory 40) wan_mac=$(mtd_get_mac_binary factory 46) ;; + r6220) + wan_mac=$(mtd_get_mac_binary factory 4) + lan_mac=$(macaddr_add "$wan_mac" 1) + ;; rt-n56u) lan_mac=$(cat /sys/class/net/eth0/address) lan_mac=$(macaddr_setbit_la "$lan_mac") diff --git a/target/linux/ramips/base-files/etc/diag.sh b/target/linux/ramips/base-files/etc/diag.sh index 54961371f8..3bdd2cf1c1 100644 --- a/target/linux/ramips/base-files/etc/diag.sh +++ b/target/linux/ramips/base-files/etc/diag.sh @@ -33,6 +33,7 @@ get_status_led() { nbg-419n|\ nbg-419n2|\ pwh2004|\ + r6220|\ vr500|\ wnce2001|\ wndr3700v5|\ diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh index 91ce5fbd49..cdebab47cd 100755 --- a/target/linux/ramips/base-files/lib/ramips.sh +++ b/target/linux/ramips/base-files/lib/ramips.sh @@ -412,6 +412,9 @@ ramips_board_detect() { *"Q7") name="zte-q7" ;; + *"R6220") + name="r6220" + ;; *"RB750Gr3") name="rb750gr3" ;; diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 3245e2c1c8..7b12d97a00 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -229,7 +229,8 @@ platform_check_image() { } return 0 ;; - hc5962) + hc5962|\ + r6220) # these boards use metadata images return 0 ;; @@ -266,6 +267,7 @@ platform_pre_upgrade() { case "$board" in hc5962|\ + r6220|\ ubnt-erx) nand_do_upgrade "$ARGV" ;; |