diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-03-05 13:29:54 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-03-05 13:29:54 +0000 |
commit | e6029cf3d704dddb5c5384675a20e3acc41d9181 (patch) | |
tree | 35d0d5198e8b74db4acc09b4a81843b4047f7b24 /target/linux/brcm63xx/base-files | |
parent | 12ec2ad963e88baf9863096dd7c857b8d717e75c (diff) | |
download | upstream-e6029cf3d704dddb5c5384675a20e3acc41d9181.tar.gz upstream-e6029cf3d704dddb5c5384675a20e3acc41d9181.tar.bz2 upstream-e6029cf3d704dddb5c5384675a20e3acc41d9181.zip |
Merge branch 'bcm63xx'
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30819 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/base-files')
-rw-r--r-- | target/linux/brcm63xx/base-files/etc/defconfig/96348A-122/network | 14 | ||||
-rwxr-xr-x | target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh | 3 |
2 files changed, 16 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/defconfig/96348A-122/network b/target/linux/brcm63xx/base-files/etc/defconfig/96348A-122/network new file mode 100644 index 0000000000..ef1f2882b7 --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/defconfig/96348A-122/network @@ -0,0 +1,14 @@ +# Copyright (C) 2008 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 type bridge + option ifname eth0 + 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 72ba3cc30b..965ddba16c 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,8 @@ do_fixcrc() { brcm63xx_detect case "$board_name" in - "bcm63xx/CPVA642 "* | "bcm63xx/MAGIC "* | "bcm63xx/V2500V_BB "* | "bcm63xx/V2110 "*) + "bcm63xx/CPVA642 "* | "bcm63xx/MAGIC "* | "bcm63xx/V2500V_BB "* | \ + "bcm63xx/V2110 "* | "bcm63xx/CPVA502+ "*) do_fixcrc ;; esac |