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/x86/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/x86/base-files/etc/init.d')
4 files changed, 107 insertions, 0 deletions
diff --git a/target/linux/x86/base-files/etc/init.d/.svn/entries b/target/linux/x86/base-files/etc/init.d/.svn/entries new file mode 100644 index 0000000..b70a12b --- /dev/null +++ b/target/linux/x86/base-files/etc/init.d/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/x86/base-files/etc/init.d +svn://svn.openwrt.org/openwrt + + + +2011-01-26T11:33:46.367773Z +25103 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +defconfig +file + + + + +2013-03-17T12:12:36.000000Z +623388c132fa0d34a0faa6c3b85a3c99 +2011-01-26T11:33:46.367773Z +25103 +nbd +has-props + + + + + + + + + + + + + + + + + + + + +330 + diff --git a/target/linux/x86/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base b/target/linux/x86/base-files/etc/init.d/.svn/prop-base/defconfig.svn-base new file mode 100644 index 0000000..869ac71 --- /dev/null +++ b/target/linux/x86/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/x86/base-files/etc/init.d/.svn/text-base/defconfig.svn-base b/target/linux/x86/base-files/etc/init.d/.svn/text-base/defconfig.svn-base new file mode 100644 index 0000000..4b4f28f --- /dev/null +++ b/target/linux/x86/base-files/etc/init.d/.svn/text-base/defconfig.svn-base @@ -0,0 +1,20 @@ +#!/bin/sh /etc/rc.common +# +# Copyright (C) 2010 Thinktube Inc. +# + +START=05 + +start() { + . /lib/soekris.sh + + local board=$(net48xx_board_name) + + [ ! -d /etc/defconfig/$board ] && board="net4826" + + for f in $( ls /etc/defconfig/$board ); do + if [ ! -e /etc/config/$f ]; then + cp /etc/defconfig/$board/$f /etc/config/ + fi + done +} diff --git a/target/linux/x86/base-files/etc/init.d/defconfig b/target/linux/x86/base-files/etc/init.d/defconfig new file mode 100755 index 0000000..4b4f28f --- /dev/null +++ b/target/linux/x86/base-files/etc/init.d/defconfig @@ -0,0 +1,20 @@ +#!/bin/sh /etc/rc.common +# +# Copyright (C) 2010 Thinktube Inc. +# + +START=05 + +start() { + . /lib/soekris.sh + + local board=$(net48xx_board_name) + + [ ! -d /etc/defconfig/$board ] && board="net4826" + + for f in $( ls /etc/defconfig/$board ); do + if [ ! -e /etc/config/$f ]; then + cp /etc/defconfig/$board/$f /etc/config/ + fi + done +} |