summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2008-08-20 11:17:40 +0000
committerJohn Crispin <john@openwrt.org>2008-08-20 11:17:40 +0000
commit3cf1a8932bcc45d9bfd21b2e41b3205f8d16685f (patch)
tree7ed9a1ccf24720cb0fb1bb486dee868337582e64 /package
parent9e17c7723674de8443c0031c26ccb9d410d73d06 (diff)
downloadmaster-31e0f0ae-3cf1a8932bcc45d9bfd21b2e41b3205f8d16685f.tar.gz
master-31e0f0ae-3cf1a8932bcc45d9bfd21b2e41b3205f8d16685f.tar.bz2
master-31e0f0ae-3cf1a8932bcc45d9bfd21b2e41b3205f8d16685f.zip
adds the option to have no proto for a interface, usefull if the uci states need to be set, but interface bring up is handled somewhere else
SVN-Revision: 12343
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index 13e1980d9c..52e50b17ec 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -142,6 +142,10 @@ set_interface_ifname() {
uci_set_state network "$config" device "$device"
}
+setup_interface_none() {
+ env -i ACTION="ifup" INTERFACE="$config" DEVICE="$iface" PROTO=none /sbin/hotplug-call "iface" &
+}
+
setup_interface_static() {
local iface="$1"
local config="$2"
@@ -259,6 +263,9 @@ setup_interface() {
lock -u "/var/lock/dhcp-$iface"
fi
;;
+ none)
+ setup_interface_none "$iface" "$config"
+ ;;
*)
if ( eval "type setup_interface_$proto" ) >/dev/null 2>/dev/null; then
eval "setup_interface_$proto '$iface' '$config' '$proto'"