ar71xx: add default network config for the AP121 boards
[openwrt/openwrt.git] / target / linux / ar71xx / base-files / etc / init.d / defconfig
index f65d559fe85a36b33ba81a4a96cdf1152d00456a..9fdfd6f899e90707baab36b8430451dfdaf7e79b 100755 (executable)
@@ -3,18 +3,18 @@
 # Copyright (C) 2009 OpenWrt.org
 #
 
-. /lib/ar71xx.sh
-
 START=05
 
 start() {
+       . /lib/ar71xx.sh
+
        local board=$(ar71xx_board_name)
 
-       [ ! -d /etc/config/defaults/$board ] && board="generic"
+       [ ! -d /etc/defconfig/$board ] && board="generic"
 
-       for f in $( ls /etc/config/defaults/$board ); do
+       for f in $( ls /etc/defconfig/$board ); do
                if [ ! -e /etc/config/$f ]; then
-                       cp /etc/config/defaults/$board/$f /etc/config/
+                       cp /etc/defconfig/$board/$f /etc/config/
                fi
        done
 }