X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/c13b2a5d979d5c35737a0d0ed847b9ed5b0dcc27..20b35b397aa8c938c79f21fe7369a6303f8b4c5a:/package/base-files/files/etc/functions.sh diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index f757ffaf2..8d1117163 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -55,7 +55,7 @@ config_rename() { local oldvar local newvar - [ "$OLD" -a "$NEW" ] || return + [ -n "$OLD" -a -n "$NEW" ] || return for oldvar in `set | grep ^CONFIG_${OLD}_ | \ sed -e 's/\(.*\)=.*$/\1/'` ; do newvar="CONFIG_${NEW}_${oldvar##CONFIG_${OLD}_}" @@ -85,7 +85,11 @@ config_clear() { } config_load() { - local file="$UCI_ROOT/etc/config/$1" + local file + case "$1" in + /*) file="$1";; + *) file="$UCI_ROOT/etc/config/$1";; + esac _C=0 export ${NO_EXPORT:+-n} CONFIG_SECTIONS= export ${NO_EXPORT:+-n} CONFIG_NUM_SECTIONS=0 @@ -135,7 +139,7 @@ config_foreach() { [ -z "$CONFIG_SECTIONS" ] && return 0 for section in ${CONFIG_SECTIONS}; do config_get cfgtype "$section" TYPE - [ -n "$type" -a "$cfgtype" != "$type" ] && continue + [ -n "$type" -a "x$cfgtype" != "x$type" ] && continue eval "$function \"\$section\"" done } @@ -182,7 +186,7 @@ strtok() { # { [] ... } shift 2 done - if [ $# -gt 0 -a "$val" ]; then + if [ $# -gt 0 -a -n "$val" ]; then export ${NO_EXPORT:+-n} "$1=$val"; count=$((count+1)) fi