diff options
author | Daniel Dickinson <crazycshore@gmail.com> | 2010-12-07 15:15:54 +0000 |
---|---|---|
committer | Daniel Dickinson <crazycshore@gmail.com> | 2010-12-07 15:15:54 +0000 |
commit | 8f9b14dafef1e9e2117edc1004e452d5d2a0782d (patch) | |
tree | 0f02a4a4ba00c81e301f76984518a8456ade119d /target/linux/brcm63xx/base-files | |
parent | 3baa168e09979e2449c31c1a580a64c491248b6b (diff) | |
download | upstream-8f9b14dafef1e9e2117edc1004e452d5d2a0782d.tar.gz upstream-8f9b14dafef1e9e2117edc1004e452d5d2a0782d.tar.bz2 upstream-8f9b14dafef1e9e2117edc1004e452d5d2a0782d.zip |
boards: Added GW6x00 fixups and GPIOs. The GW6200 GPIOs are different than the reference design 96348GW so we use fixup to allow us to define the correct ones, also the GW6000 has no GPIO-controlled leds.
SVN-Revision: 24305
Diffstat (limited to 'target/linux/brcm63xx/base-files')
-rwxr-xr-x | target/linux/brcm63xx/base-files/lib/brcm63xx.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh index 25f2ab47e6..e2c563460a 100755 --- a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh +++ b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh @@ -19,6 +19,16 @@ brcm63xx_detect() { brcm63xx_has_reset_button="true" ifname=eth1 ;; + "bcm63xx/GW6000 "*) + brcm63xx_has_reset_button="true" + ifname=eth1 + ;; + "bcm63xx/GW6200 "*) + status_led="line1" + status_led2="tel" + brcm63xx_has_reset_button="true" + ifname=eth1 + ;; "bcm63xx/96348GW-11 "*) status_led="power" brcm63xx_has_reset_button="true" |