From 65302aa5bc4cebf0a8cbde4cf65418b82ddeb7bf Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 20 May 2011 10:06:25 +0000 Subject: [brcm63xx] add support for BT Voyager 2110 (#8810) Signed-off-by: Jonathan McCrohan git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26959 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../linux/brcm63xx/base-files/etc/defconfig/V2110/network | 14 ++++++++++++++ .../base-files/etc/uci-defaults/brcm63xx_fixcrc.sh | 2 +- target/linux/brcm63xx/base-files/lib/brcm63xx.sh | 5 +++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 target/linux/brcm63xx/base-files/etc/defconfig/V2110/network (limited to 'target/linux/brcm63xx/base-files') diff --git a/target/linux/brcm63xx/base-files/etc/defconfig/V2110/network b/target/linux/brcm63xx/base-files/etc/defconfig/V2110/network new file mode 100644 index 000000000..47581409d --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/defconfig/V2110/network @@ -0,0 +1,14 @@ +# Copyright (C) 2011 OpenWrt.org + +config interface loopback + option ifname lo + option proto static + option ipaddr 127.0.0.1 + option netmask 255.0.0.0 + +config interface lan + option ifname eth0 + option type bridge + option proto static + option ipaddr 192.168.1.1 + option netmask 255.255.255.0 diff --git a/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh b/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh index 65d00d654..72ba3cc30 100755 --- a/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh +++ b/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh @@ -13,7 +13,7 @@ do_fixcrc() { brcm63xx_detect case "$board_name" in - "bcm63xx/CPVA642 "* | "bcm63xx/MAGIC "* | "bcm63xx/V2500V_BB "* ) + "bcm63xx/CPVA642 "* | "bcm63xx/MAGIC "* | "bcm63xx/V2500V_BB "* | "bcm63xx/V2110 "*) do_fixcrc ;; esac diff --git a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh index d2ffabd17..ed3447d01 100755 --- a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh +++ b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh @@ -54,6 +54,11 @@ brcm63xx_detect() { brcm63xx_has_reset_button="true" ifname=eth0 ;; + "bcm63xx/V2110 "*) + status_led="V2110:power:green" + brcm63xx_has_reset_button="true" + ifname=eth0 + ;; "bcm63xx/CPVA642 "* ) status_led="power:green" brcm63xx_has_reset_button="true" -- cgit v1.2.3