diff options
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/init.d/.svn')
3 files changed, 87 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/init.d/.svn/entries b/target/linux/ar71xx/base-files/etc/init.d/.svn/entries new file mode 100644 index 0000000..3b92cb2 --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/init.d/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/ar71xx/base-files/etc/init.d +svn://svn.openwrt.org/openwrt + + + +2011-11-07T21:43:51.292143Z +28817 +juhosg + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +defconfig +file + + + + +2013-03-17T12:12:43.000000Z +96b2321acf26d8e4bd6ee39242060d3e +2011-11-07T21:43:51.292143Z +28817 +juhosg +has-props + + + + + + + + + + + + + + + + + + + + +318 + diff --git a/target/linux/ar71xx/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base b/target/linux/ar71xx/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base new file mode 100644 index 0000000..869ac71 --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/target/linux/ar71xx/base-files/etc/init.d/.svn/text-base/defconfig.svn-base b/target/linux/ar71xx/base-files/etc/init.d/.svn/text-base/defconfig.svn-base new file mode 100644 index 0000000..364fa4a --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/init.d/.svn/text-base/defconfig.svn-base @@ -0,0 +1,20 @@ +#!/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 +} |