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 | 0a907fdb8a5c9efb94c8c0b3e3e5adc89e897d0e (patch) | |
tree | 66ff542bc4865089d034cb306eed9beae464e300 /target/linux/brcm63xx | |
parent | bbd02c6fb75cbe7b533deee2045a3ffaa60e9c8f (diff) | |
download | upstream-0a907fdb8a5c9efb94c8c0b3e3e5adc89e897d0e.tar.gz upstream-0a907fdb8a5c9efb94c8c0b3e3e5adc89e897d0e.tar.bz2 upstream-0a907fdb8a5c9efb94c8c0b3e3e5adc89e897d0e.zip |
bcm63xx: remove defconfig support
All boards use uci-defaults, no need to keep defconfig support.
SVN-Revision: 36610
Diffstat (limited to 'target/linux/brcm63xx')
-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 -} |