2010-11-28 22:04:19 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
#
|
|
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
|
|
|
START=05
|
|
|
|
|
|
|
|
start() {
|
2012-05-27 13:22:11 +00:00
|
|
|
. /lib/brcm63xx.sh
|
2010-11-28 22:04:19 +00:00
|
|
|
|
2012-05-27 13:22:11 +00:00
|
|
|
[ ! -d /etc/defconfig/$board_name ] && board_name="generic"
|
2011-05-20 10:06:15 +00:00
|
|
|
|
2012-05-27 13:22:11 +00:00
|
|
|
for f in $( ls /etc/defconfig/$board_name ); do
|
2010-11-28 22:04:19 +00:00
|
|
|
if [ ! -e /etc/config/$f ]; then
|
2012-05-27 13:22:11 +00:00
|
|
|
cp /etc/defconfig/$board_name/$f /etc/config/
|
2010-11-28 22:04:19 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|