diff options
author | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-05-27 13:22:11 +0000 |
---|---|---|
committer | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-05-27 13:22:11 +0000 |
commit | acbbcb35b865e159d4052208b6045d0c7806da93 (patch) | |
tree | e4907e74c1382ea8ab2f44cc190270ed687284b1 /target/linux/brcm63xx | |
parent | 2c54f4168e023dafcc98be10e0b3530ef198c145 (diff) |
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')
-rwxr-xr-x | target/linux/brcm63xx/base-files/etc/init.d/defconfig | 12 | ||||
-rwxr-xr-x | target/linux/brcm63xx/base-files/lib/brcm63xx.sh | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/init.d/defconfig b/target/linux/brcm63xx/base-files/etc/init.d/defconfig index 8fd783d4d..a49c32785 100755 --- a/target/linux/brcm63xx/base-files/etc/init.d/defconfig +++ b/target/linux/brcm63xx/base-files/etc/init.d/defconfig @@ -6,17 +6,13 @@ START=05 start() { - local board=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo) + . /lib/brcm63xx.sh - if [ "$board" = "96358VW" ] && [ -e /proc/switch/eth1/enable ]; then - board="DVAG3810BN" - fi + [ ! -d /etc/defconfig/$board_name ] && board_name="generic" - [ ! -d /etc/defconfig/$board ] && board="generic" - - for f in $( ls /etc/defconfig/$board ); do + for f in $( ls /etc/defconfig/$board_name ); do if [ ! -e /etc/config/$f ]; then - cp /etc/defconfig/$board/$f /etc/config/ + cp /etc/defconfig/$board_name/$f /etc/config/ fi done } diff --git a/target/linux/brcm63xx/base-files/lib/brcm63xx.sh b/target/linux/brcm63xx/base-files/lib/brcm63xx.sh index 488aed874..e4ac5e331 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" |