aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-05-10 18:17:12 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-05-10 18:17:12 +0000
commita9b90461ebdaeec297893bb2357a5785424f5844 (patch)
tree78c51a161fb77545115fa6d2e3046b8472eae24a /package
parent1159291032b09b55e107605b1eedc68851589fa5 (diff)
downloadmaster-187ad058-a9b90461ebdaeec297893bb2357a5785424f5844.tar.gz
master-187ad058-a9b90461ebdaeec297893bb2357a5785424f5844.tar.bz2
master-187ad058-a9b90461ebdaeec297893bb2357a5785424f5844.zip
add common functions for the new config file format
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3751 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/default/etc/functions.sh50
1 files changed, 50 insertions, 0 deletions
diff --git a/package/base-files/default/etc/functions.sh b/package/base-files/default/etc/functions.sh
index 526ca52dda..858dc286ad 100755
--- a/package/base-files/default/etc/functions.sh
+++ b/package/base-files/default/etc/functions.sh
@@ -11,3 +11,53 @@ if_valid () (
hotplug_dev() {
env -i ACTION=$1 INTERFACE=$2 /sbin/hotplug net
}
+
+config_cb() {
+ return 0
+}
+option_cb() {
+ return 0
+}
+
+config () {
+ config_cb "$@"
+ _C=$((${_C:-0} + 1))
+ export CONFIG_SECTION="${2:-cfg${_C}}"
+ export CONFIG_${CONFIG_SECTION}_TYPE="$1"
+}
+
+option () {
+ local varname="$1" ; shift
+ export CONFIG_${CONFIG_SECTION}_${varname}="$*"
+ option_cb "$varname" "$*"
+}
+
+config_clear() {
+ [ -z "$CONFIG_SECTION" ] && return
+ for oldsetting in `set | grep ^CONFIG_${CONFIG_SECTION}_ | \
+ sed -e 's/\(.*\)=.*$/\1/'` ; do
+ unset $oldsetting
+ done
+ unset CONFIG_SECTION
+}
+
+config_load() {
+ local CD=""
+ if [ \! -e "$1" -a -e "/etc/config/$1" ]; then
+ cd /etc/config && local CD=1
+ fi
+ [ -e "$1" ] && . $1
+ ${CD:+cd - >/dev/null}
+ ${CONFIG_SECTION:+config_cb}
+}
+
+config_get() {
+ case "$3" in
+ "") eval "echo \${CONFIG_${1}_${2}}";;
+ *) eval "$1=\"\${CONFIG_${2}_${3}}\"";;
+ esac
+}
+
+config_set() {
+ export CONFIG_${1}_${2}="${3}"
+}