summaryrefslogtreecommitdiff
path: root/obsolete-buildroot
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2004-12-11 07:28:27 +0000
committerMike Baker <mbm@openwrt.org>2004-12-11 07:28:27 +0000
commit9d1a5b497c8350eb26ce173fc2401b71516a649c (patch)
treee2172c570d7f5f630ce87c9fa3aa4a0c12e77367 /obsolete-buildroot
parentf0f8f6d62e34290e41b281e1267d9b362c5d8f77 (diff)
downloadmtk-20170518-9d1a5b497c8350eb26ce173fc2401b71516a649c.zip
mtk-20170518-9d1a5b497c8350eb26ce173fc2401b71516a649c.tar.gz
mtk-20170518-9d1a5b497c8350eb26ce173fc2401b71516a649c.tar.bz2
cleanup code, fix debug output
SVN-Revision: 184
Diffstat (limited to 'obsolete-buildroot')
-rwxr-xr-xobsolete-buildroot/sources/openwrt/root/etc/functions.sh31
1 files changed, 17 insertions, 14 deletions
diff --git a/obsolete-buildroot/sources/openwrt/root/etc/functions.sh b/obsolete-buildroot/sources/openwrt/root/etc/functions.sh
index 1d34115..75500a2 100755
--- a/obsolete-buildroot/sources/openwrt/root/etc/functions.sh
+++ b/obsolete-buildroot/sources/openwrt/root/etc/functions.sh
@@ -12,19 +12,22 @@ nvram () {
. /etc/nvram.overrides
# valid interface?
-if_valid () (
- [ "${1%%[0-9]}" = "vlan" ] && {
- i=${1#vlan}
- hwname=$(nvram get vlan${i}hwname)
- hwaddr=$(nvram get ${hwname}macaddr)
- [ -z "$hwaddr" ] && return 1
+if_valid () {
+ ifconfig "$1" >&- 2>&- ||
+ [ "${1%%[0-9]}" = "br" ] ||
+ {
+ [ "${1%%[0-9]}" = "vlan" ] && (
+ i=${1#vlan}
+ 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)
- debug "# vlan$i: $hwname $hwaddr => $vif"
+ vif=$(ifconfig -a | awk '/^eth.*'$hwaddr'/ {print $1; exit}' IGNORECASE=1)
+ debug "# vlan$i => $vif"
- $DEBUG ifconfig $vif up
- $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; }
-)
+ $DEBUG ifconfig $vif up
+ $DEBUG vconfig add $vif $i 2>&-
+ )
+ } ||
+ { echo -e "# $1 ignored: can't find/create"; false; }
+}