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 | 72b4fdecc9bb33aea7b6a58dcefd4553d093f266 (patch) | |
tree | 002a185d77e90555dd66ed72ba5d2d26a041046c /target/linux/brcm63xx/base-files/etc | |
parent | dd37687de0852be2b912f7f38b57de8a8fbc04e5 (diff) | |
download | upstream-72b4fdecc9bb33aea7b6a58dcefd4553d093f266.tar.gz upstream-72b4fdecc9bb33aea7b6a58dcefd4553d093f266.tar.bz2 upstream-72b4fdecc9bb33aea7b6a58dcefd4553d093f266.zip |
bcm63xx: move the board name workaround to /lib/brcm63xx.sh
SVN-Revision: 31872
Diffstat (limited to 'target/linux/brcm63xx/base-files/etc')
-rwxr-xr-x | target/linux/brcm63xx/base-files/etc/init.d/defconfig | 12 |
1 files changed, 4 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 8fd783d4d6..a49c32785d 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 } |