bcm63xx: remove defconfig support

All boards use uci-defaults, no need to keep defconfig support.



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36610 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Jonas Gorski 2013-05-12 11:54:38 +00:00
parent 8a11d6651b
commit d7f91f4f5f
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
#!/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
}