diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /target/linux/brcm63xx/base-files/etc/init.d | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'target/linux/brcm63xx/base-files/etc/init.d')
4 files changed, 103 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/init.d/.svn/entries b/target/linux/brcm63xx/base-files/etc/init.d/.svn/entries new file mode 100644 index 0000000..e0b3a50 --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/init.d/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/brcm63xx/base-files/etc/init.d +svn://svn.openwrt.org/openwrt + + + +2012-05-27T13:22:11.159299Z +31872 +jogo + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +defconfig +file + + + + +2013-03-17T12:12:30.000000Z +4dda60616e1671b17e24dff081431a07 +2012-05-27T13:22:11.159299Z +31872 +jogo +has-props + + + + + + + + + + + + + + + + + + + + +312 + diff --git a/target/linux/brcm63xx/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base b/target/linux/brcm63xx/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base new file mode 100644 index 0000000..869ac71 --- /dev/null +++ b/target/linux/brcm63xx/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/brcm63xx/base-files/etc/init.d/.svn/text-base/defconfig.svn-base b/target/linux/brcm63xx/base-files/etc/init.d/.svn/text-base/defconfig.svn-base new file mode 100644 index 0000000..a49c327 --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/init.d/.svn/text-base/defconfig.svn-base @@ -0,0 +1,18 @@ +#!/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 +} diff --git a/target/linux/brcm63xx/base-files/etc/init.d/defconfig b/target/linux/brcm63xx/base-files/etc/init.d/defconfig new file mode 100755 index 0000000..a49c327 --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/init.d/defconfig @@ -0,0 +1,18 @@ +#!/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 +} |