diff options
author | Jonas Gorski <jogo@openwrt.org> | 2014-02-22 11:16:33 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2014-02-22 11:16:33 +0000 |
commit | fe37b14fca0a98c8f5c4a01f9d46ff64bcf6371c (patch) | |
tree | 27571317a6804fc2ad828905dcf145d6d23210ca /target/linux/brcm63xx | |
parent | f92b2a956bbd35964dcd77ca34c4f3b55ada32bc (diff) | |
download | upstream-fe37b14fca0a98c8f5c4a01f9d46ff64bcf6371c.tar.gz upstream-fe37b14fca0a98c8f5c4a01f9d46ff64bcf6371c.tar.bz2 upstream-fe37b14fca0a98c8f5c4a01f9d46ff64bcf6371c.zip |
brcm63xx: Add userspace support for Sagemcom F@ST2704V2 ADSL router
This adds userspace support for Sagemcom F@st 2704 router.
Signed-off-by: Marcin Jurkowski <marcin1j@gmail.com>
Patchwork: http://patchwork.openwrt.org/patch/4215/
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 39672
Diffstat (limited to 'target/linux/brcm63xx')
3 files changed, 26 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/uci-defaults/01_leds b/target/linux/brcm63xx/base-files/etc/uci-defaults/01_leds new file mode 100644 index 0000000000..6007e38218 --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/uci-defaults/01_leds @@ -0,0 +1,19 @@ +#!/bin/sh +# +# Copyright (C) 2013 OpenWrt.org +# + + +. /lib/functions/uci-defaults.sh +. /lib/brcm63xx.sh + + +case "$board_name" in +'F@ST2704V2') + ucidef_set_led_usbdev "usb" "USB" "F@ST2704V2:green:usb" "1-1" + ;; +esac + +ucidef_commit_leds + +exit 0 diff --git a/target/linux/brcm63xx/base-files/etc/uci-defaults/02_network b/target/linux/brcm63xx/base-files/etc/uci-defaults/02_network index d7f6c3a46d..087bce960d 100755 --- a/target/linux/brcm63xx/base-files/etc/uci-defaults/02_network +++ b/target/linux/brcm63xx/base-files/etc/uci-defaults/02_network @@ -80,7 +80,8 @@ DVG3810BN) 96328A-1441N1 |\ 963281TAN |\ 963281T_TEF |\ -96368MVNgr) +96368MVNgr |\ +"F@ST2704V2") ucidef_set_interface_lan "eth0.1" ucidef_add_switch "eth0" "1" "1" ucidef_add_switch_vlan "eth0" "1" "0 1 2 3 8t" diff --git a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh index 7c449ae6ad..afe9624933 100755 --- a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh +++ b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh @@ -121,6 +121,11 @@ brcm63xx_detect() { brcm63xx_has_reset_button="true" ifname=eth0 ;; + 'F@ST2704V2') + status_led="F@ST2704V2:green:power" + brcm63xx_has_reset_button="true" + ifname=eth0 + ;; *) ;; esac |