add more base-files

SVN-Revision: 14653
This commit is contained in:
Gabor Juhos
2009-02-24 18:16:40 +00:00
parent ba2973b938
commit 9be9eb8ab1
3 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/sh /etc/rc.common
#
# Copyright (C) 2009 OpenWrt.org
#
. /lib/ar71xx.sh
START=05
start() {
local board=$(ar71xx_board_name)
[ ! -d /etc/config/defaults/$board ] && board="generic"
for f in $( ls /etc/config/defaults/$board ); do
if [ ! -e /etc/config/$f ]; then
cp /etc/config/defaults/$board/$f /etc/config/
fi
done
}