add an optional parameter to scan_interfaces() that can override the network config file (defaults to 'network')
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6619 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
9048717187
commit
44890cf760
|
@ -24,6 +24,7 @@ find_config() {
|
||||||
}
|
}
|
||||||
|
|
||||||
scan_interfaces() {
|
scan_interfaces() {
|
||||||
|
local cfgfile="$1"
|
||||||
local mode iftype iface ifname device
|
local mode iftype iface ifname device
|
||||||
interfaces=
|
interfaces=
|
||||||
config_cb() {
|
config_cb() {
|
||||||
|
@ -50,7 +51,7 @@ scan_interfaces() {
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
config_load network
|
config_load "${cfgfile:-network}"
|
||||||
}
|
}
|
||||||
|
|
||||||
add_vlan() {
|
add_vlan() {
|
||||||
|
|
Loading…
Reference in New Issue