projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbd1970
)
add uci_set_default (to be used in init scripts or /etc/uci-defaults)
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 2 Jan 2008 17:10:16 +0000
(17:10 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 2 Jan 2008 17:10:16 +0000
(17:10 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10086
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/etc/functions.sh
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/functions.sh
b/package/base-files/files/etc/functions.sh
index
69af187
..
ef28015
100755
(executable)
--- a/
package/base-files/files/etc/functions.sh
+++ b/
package/base-files/files/etc/functions.sh
@@
-217,3
+217,9
@@
jffs2_mark_erase() {
}
echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1"
}
+
+uci_set_default() {
+ local PACKAGE="$1"
+ [ -e "/etc/config/$1" ] && return 0
+ cat > "/etc/config/$1"
+}