bcm63xx: move the board name workaround to /lib/brcm63xx.sh
[openwrt/staging/yousong.git] / target / linux / brcm63xx / base-files / etc / init.d / defconfig
index 8fd783d4d652c2bfafe110ad88df401e85b94deb..a49c32785da340b306eb03c1a5826f4ca80e016f 100755 (executable)
@@ -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
 }