diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-05-12 11:54:38 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-05-12 11:54:38 +0000 |
commit | d7f91f4f5fc9ed4bd99b53cf25dc61d362444753 (patch) | |
tree | 333f51894f81cc99453e224e5e06366145a2d1a8 | |
parent | 8a11d6651bedfbec64a8206bfdbbe27b7e8b7d98 (diff) | |
download | upstream-d7f91f4f5fc9ed4bd99b53cf25dc61d362444753.tar.gz upstream-d7f91f4f5fc9ed4bd99b53cf25dc61d362444753.tar.bz2 upstream-d7f91f4f5fc9ed4bd99b53cf25dc61d362444753.zip |
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
-rwxr-xr-x | target/linux/brcm63xx/base-files/etc/init.d/defconfig | 18 |
1 files changed, 0 insertions, 18 deletions
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 index a49c32785d..0000000000 --- a/target/linux/brcm63xx/base-files/etc/init.d/defconfig +++ /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 -} |