X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/512afda668386575e4d146d22161ca3afa3af728..f9bd88d49b28fb02a1467dc772eeda20eb1b5872:/obsolete-buildroot/sources/openwrt/root/etc/functions.sh diff --git a/obsolete-buildroot/sources/openwrt/root/etc/functions.sh b/obsolete-buildroot/sources/openwrt/root/etc/functions.sh index 79db1dad3..1d341152f 100755 --- a/obsolete-buildroot/sources/openwrt/root/etc/functions.sh +++ b/obsolete-buildroot/sources/openwrt/root/etc/functions.sh @@ -3,8 +3,11 @@ alias debug=${DEBUG:-:} # allow env to override nvram -nvram_get () { - eval "echo \${$1:-\$(nvram get $1)}" +nvram () { + case $1 in + get) eval "echo \${NVRAM_$2:-\$(command nvram get $2)}";; + *) command nvram $*;; + esac } . /etc/nvram.overrides @@ -12,8 +15,8 @@ nvram_get () { if_valid () ( [ "${1%%[0-9]}" = "vlan" ] && { i=${1#vlan} - hwname=$(nvram_get vlan${i}hwname) - hwaddr=$(nvram_get ${hwname}macaddr) + hwname=$(nvram get vlan${i}hwname) + hwaddr=$(nvram get ${hwname}macaddr) [ -z "$hwaddr" ] && return 1 vif=$(ifconfig -a | awk '/^eth.*'$hwaddr'/ {print $1; exit}' IGNORECASE=1) @@ -23,4 +26,5 @@ if_valid () ( $DEBUG vconfig add $vif $i 2>/dev/null } ifconfig "$1" >/dev/null 2>&1 || [ "${1%%[0-9]}" = "br" ] + [ $? = 0 ] || { echo -e "# $1 ignored: no such interface"; return 1; } )