disable CONFIG_USB_SUPPORT in generic config for 2.6.25 & 2.6.26 and enable it on...
[openwrt.git] / package / base-files / files / lib / network / config.sh
index 13e1980..dfee674 100755 (executable)
@@ -142,6 +142,10 @@ set_interface_ifname() {
        uci_set_state network "$config" device "$device"
 }
 
+setup_interface_none() {
+       env -i ACTION="ifup" INTERFACE="$2" DEVICE="$1" 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'" 
This page took 0.024905 seconds and 4 git commands to generate.