diff options
author | John Crispin <john@openwrt.org> | 2015-11-24 18:29:02 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-11-24 18:29:02 +0000 |
commit | e9baf8265bb8938169b882deff2026a7389bd9f7 (patch) | |
tree | 7e2034802bd38edbe550f5a70efc305563d8d6ea /target/linux/ramips/base-files | |
parent | 12b6f4cf71787950b606dd61f4a649a73453f2f8 (diff) | |
download | upstream-e9baf8265bb8938169b882deff2026a7389bd9f7.tar.gz upstream-e9baf8265bb8938169b882deff2026a7389bd9f7.tar.bz2 upstream-e9baf8265bb8938169b882deff2026a7389bd9f7.zip |
ramips: add support for Youku YK1
Changes since V1:
I resend this patch for current trunk.The former V1 patch is for CC branch.
Signed-off-by: Shonn Lu <countrysideboy@qq.com>
SVN-Revision: 47617
Diffstat (limited to 'target/linux/ramips/base-files')
4 files changed, 12 insertions, 2 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 5627c8ca8c..1c18ded505 100755 --- a/target/linux/ramips/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/base-files/etc/board.d/01_leds @@ -268,6 +268,11 @@ zbt-wr8305rt) zte-q7) set_wifi_led "$board:blue:status" ;; +youku-yk1) + ucidef_set_led_default "power" "power" "$board:blue:power" "1" + set_wifi_led "$board:blue:air" + set_usb_led "$board:blue:usb" + ;; esac board_config_flush 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 382174298a..22809d1720 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -84,7 +84,8 @@ ramips_setup_interfaces() wsr-600|\ wt1520|\ y1|\ - zbt-wg2626) + zbt-wg2626|\ + youku-yk1) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ucidef_add_switch "switch0" "1" "1" ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 6t" diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh index a1bcb7261d..d6fdeb9891 100755 --- a/target/linux/ramips/base-files/lib/ramips.sh +++ b/target/linux/ramips/base-files/lib/ramips.sh @@ -460,6 +460,9 @@ ramips_board_detect() { *"ZBT-WR8305RT") name="zbt-wr8305rt" ;; + *"YK1") + name="youku-yk1" + ;; *) name="generic" ;; diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 0e8d619069..0b9dd43791 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -134,7 +134,8 @@ platform_check_image() { zbt-wa05|\ zbt-wg2626|\ zbt-wr8305rt|\ - zte-q7) + zte-q7|\ + youku-yk1) [ "$magic" != "27051956" ] && { echo "Invalid image type." return 1 |