diff options
author | John Crispin <john@openwrt.org> | 2015-10-05 10:25:47 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-10-05 10:25:47 +0000 |
commit | c10bdf11ff6ac0713b5b519203c0869e747d87c0 (patch) | |
tree | 94a494d61f9613905e29c270f959c8ae1add59eb /target/linux/ramips/base-files/etc/board.d | |
parent | 03681684bff28095a3570c33ccf775d86d1de082 (diff) | |
download | upstream-c10bdf11ff6ac0713b5b519203c0869e747d87c0.tar.gz upstream-c10bdf11ff6ac0713b5b519203c0869e747d87c0.tar.bz2 upstream-c10bdf11ff6ac0713b5b519203c0869e747d87c0.zip |
ramips: Add base-files for HiWiFi HC5x61 models
HiWiFi HC5661/5761/5861 models are manufactured by http://www.hiwifi.com. These models have similar hardware specs(MT7620A + 128M DDR2 + 16M flash). This patch adds support for them.
The original author is Justin Liu (rssnsj@gmail.com). I ported the patch to trunk and submitted it here with his approval.
v3 fix
1: Fixed model order
2: Remove manufacturer name from model name
3: Use a hacky but prettier way to get mac address.
Signed-off-by: Xiaoning Kang <kangxn@163.com>
SVN-Revision: 47111
Diffstat (limited to 'target/linux/ramips/base-files/etc/board.d')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/01_leds | 18 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/02_network | 18 |
2 files changed, 30 insertions, 6 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 a9959e37c1..c75a99301e 100755 --- a/target/linux/ramips/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/base-files/etc/board.d/01_leds @@ -132,6 +132,24 @@ fonera20n) set_usb_led "$board:orange:usb" set_wifi_led "$board:orange:wifi" ;; +hc5661) + ucidef_set_led_default "system" "system" "$board:blue:system" "1" + ucidef_set_led_netdev "internet" "internet" "$board:blue:internet" "eth0.2" + set_wifi_led "$board:blue:wlan2g" + ;; +hc5761) + ucidef_set_led_default "system" "system" "$board:blue:system" "1" + ucidef_set_led_netdev "internet" "internet" "$board:blue:internet" "eth0.2" + set_wifi_led "$board:blue:wlan2g" + ucidef_set_led_netdev "wifi5g" "wifi5g" "$board:blue:wlan5g" "rai0" + ;; +hc5861) + ucidef_set_led_default "system" "system" "$board:blue:system" "1" + ucidef_set_led_netdev "internet" "internet" "$board:blue:internet" "eth0.2" + set_wifi_led "$board:blue:wlan2g" + ucidef_set_led_netdev "wifi5g" "wifi5g" "$board:blue:wlan5g" "rai0" + ucidef_set_led_default "turbo" "turbo" "$board:blue:turbo" "0" + ;; hg255d) set_wifi_led "$board:green:wlan" set_usb_led "$board:green:usb" 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 75cccae0fb..94d69b9e7e 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -170,6 +170,13 @@ ramips_setup_interfaces() ucidef_add_switch_vlan "switch1" "1" "0 1 2 3 6t" ucidef_add_switch_vlan "switch1" "2" "4 6t" ;; + hc5*61|\ + y1s) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5 6t" + ucidef_add_switch_vlan "switch0" "2" "0 6t" + ;; m2m) ucidef_add_switch "switch0" "4" ucidef_set_interface_lan "eth0" @@ -224,12 +231,6 @@ ramips_setup_interfaces() ucidef_add_switch_vlan "switch0" "1" "1 2 6t" ucidef_add_switch_vlan "switch0" "2" "0 6t" ;; - y1s) - ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" - ucidef_add_switch "switch0" "1" "1" - ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5 6t" - ucidef_add_switch_vlan "switch0" "2" "0 6t" - ;; zbt-wr8305rt) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ucidef_add_switch "switch0" "1" "1" @@ -293,6 +294,11 @@ ramips_setup_macs() e1700) wan_mac=$(mtd_get_mac_ascii config WAN_MAC_ADDR) ;; + hc5*61) + lan_mac=`mtd_get_mac_ascii bdinfo "Vfac_mac "` + [ -n "$lan_mac" ] || lan_mac=$(cat /sys/class/net/eth0/address) + wan_mac=$(macaddr_add "$lan_mac" 1) + ;; ht-tm02) lan_mac=$(cat /sys/class/net/eth0/address) ;; |