[ar71xx] defconfig: move defaults from /etc/config/defaults/ to /etc/defconfig/,...
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / base-files / etc / init.d / defconfig
1 #!/bin/sh /etc/rc.common
2 #
3 # Copyright (C) 2009 OpenWrt.org
4 #
5
6 . /lib/ar71xx.sh
7
8 START=05
9
10 start() {
11 local board=$(ar71xx_board_name)
12
13 [ ! -d /etc/defconfig/$board ] && board="generic"
14
15 for f in $( ls /etc/defconfig/$board ); do
16 if [ ! -e /etc/config/$f ]; then
17 cp /etc/defconfig/$board/$f /etc/config/
18 fi
19 done
20 }