diff options
author | Luka Perkov <luka@openwrt.org> | 2014-01-23 11:33:42 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-01-23 11:33:42 +0000 |
commit | cbc892a549d0331542854fd62c8ffc4faee9900b (patch) | |
tree | 5a66703a620cd3f50c5603cdfe0775a3eeba975d /target/linux/ar71xx/base-files/etc/init.d | |
parent | d66d2ad104751b30d5d09e3feac4e5dff12429b1 (diff) | |
download | upstream-cbc892a549d0331542854fd62c8ffc4faee9900b.tar.gz upstream-cbc892a549d0331542854fd62c8ffc4faee9900b.tar.bz2 upstream-cbc892a549d0331542854fd62c8ffc4faee9900b.zip |
ar71xx: create wndr3700 network config from uci-defaults
Since that was the last configuration in defconfig directory we can drop the
defconfig init script too.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 39373
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/init.d')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/init.d/defconfig | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/ar71xx/base-files/etc/init.d/defconfig b/target/linux/ar71xx/base-files/etc/init.d/defconfig deleted file mode 100755 index 364fa4a6a5..0000000000 --- a/target/linux/ar71xx/base-files/etc/init.d/defconfig +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh /etc/rc.common -# -# Copyright (C) 2009 OpenWrt.org -# - -START=05 - -start() { - . /lib/ar71xx.sh - - local board=$(ar71xx_board_name) - - [ ! -d /etc/defconfig/$board ] && return 0 - - for f in $( ls /etc/defconfig/$board ); do - if [ ! -e /etc/config/$f ]; then - cp /etc/defconfig/$board/$f /etc/config/ - fi - done -} |