mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 21:32:59 +02:00
fix find_config() in the network scripts
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4682 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9fbed7d98e
commit
f7d68e0a92
@ -4,12 +4,15 @@
|
|||||||
# DEBUG="echo"
|
# DEBUG="echo"
|
||||||
|
|
||||||
find_config() {
|
find_config() {
|
||||||
local iftype iface ifn
|
local iftype device iface ifaces ifn
|
||||||
for ifn in $interfaces; do
|
for ifn in $interfaces; do
|
||||||
config_get iftype "$ifn" type
|
config_get iftype "$ifn" type
|
||||||
config_get iface "$ifn" ifname
|
config_get iface "$ifn" ifname
|
||||||
|
case "$iftype" in
|
||||||
|
bridge) config_get ifaces "$ifn" ifnames;;
|
||||||
|
esac
|
||||||
config_get device "$ifn" device
|
config_get device "$ifn" device
|
||||||
for ifc in ${device:-$iface}; do
|
for ifc in $device $iface $ifaces; do
|
||||||
[ "$ifc" = "$1" ] && {
|
[ "$ifc" = "$1" ] && {
|
||||||
echo "$ifn"
|
echo "$ifn"
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user