fix find_config() in the network scripts
[openwrt/staging/mkresin.git] / openwrt / package / base-files / default / lib / network / config.sh
index 5bc74d12853ec8efb9439e54ae1a59bcc13e8241..ec05c3eb818d271267a192de82abdd2d8c2b6f1a 100755 (executable)
@@ -4,12 +4,15 @@
 # DEBUG="echo"
 
 find_config() {
-       local iftype iface ifn
+       local iftype device iface ifaces ifn
        for ifn in $interfaces; do
                config_get iftype "$ifn" type
                config_get iface "$ifn" ifname
+               case "$iftype" in
+                       bridge) config_get ifaces "$ifn" ifnames;;
+               esac
                config_get device "$ifn" device
-               for ifc in ${device:-$iface}; do
+               for ifc in $device $iface $ifaces; do
                        [ "$ifc" = "$1" ] && {
                                echo "$ifn"
                                return 0