bcm63xx: remove defconfig support
authorjogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 12 May 2013 11:54:38 +0000 (11:54 +0000)
committerjogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 12 May 2013 11:54:38 +0000 (11:54 +0000)
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

target/linux/brcm63xx/base-files/etc/init.d/defconfig [deleted file]

diff --git a/target/linux/brcm63xx/base-files/etc/init.d/defconfig b/target/linux/brcm63xx/base-files/etc/init.d/defconfig
deleted file mode 100755 (executable)
index a49c327..0000000
+++ /dev/null
@@ -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
-}