diff options
author | Jonas Gorski <jogo@openwrt.org> | 2012-05-27 13:22:11 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2012-05-27 13:22:11 +0000 |
commit | 6082cee9d699e304056cd5b56f885aed99d51480 (patch) | |
tree | e4907e74c1382ea8ab2f44cc190270ed687284b1 /target/linux/brcm63xx/base-files/lib | |
parent | 1148159a4fb24c481dac066cd28d5b572991eb15 (diff) | |
download | upstream-6082cee9d699e304056cd5b56f885aed99d51480.tar.gz upstream-6082cee9d699e304056cd5b56f885aed99d51480.tar.bz2 upstream-6082cee9d699e304056cd5b56f885aed99d51480.zip |
bcm63xx: move the board name workaround to /lib/brcm63xx.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31872 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/base-files/lib')
-rwxr-xr-x | target/linux/brcm63xx/base-files/lib/brcm63xx.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh index 488aed874f..e4ac5e331d 100755 --- a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh +++ b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh @@ -13,6 +13,10 @@ brcm63xx_has_reset_button="" brcm63xx_detect() { board_name=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo) + if [ "$board_name" = "96358VW" ] && [ -e /proc/switch/eth1/enable ]; then + board_name="DVAG3810BN" + fi + case "$board_name" in 96348GW) status_led="power" |