You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
312 B
18 lines
312 B
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
#
|
|
|
|
START=05
|
|
|
|
start() {
|
|
. /lib/brcm63xx.sh
|
|
|
|
[ ! -d /etc/defconfig/$board_name ] && board_name="generic"
|
|
|
|
for f in $( ls /etc/defconfig/$board_name ); do
|
|
if [ ! -e /etc/config/$f ]; then
|
|
cp /etc/defconfig/$board_name/$f /etc/config/
|
|
fi
|
|
done
|
|
}
|
|
|