add firmware loading support to hotplug
[openwrt.git] / openwrt / package / base-files / default / sbin / ifup
index 0d75cef..67e01a3 100755 (executable)
@@ -14,14 +14,17 @@ if=$(nvram get ${type}_ifname)
 
 case "$if_proto" in
        pppoa) hotplug_dev register atm0; exit 0 ;;
 
 case "$if_proto" in
        pppoa) hotplug_dev register atm0; exit 0 ;;
-       pppoe) 
-               [ "$(nvram get pppoe_atm)" = 1 ] && {
+       pppoe)
+               ifconfig nas0 2>&- >&- || {
                        hotplug_dev register atm0
                        hotplug_dev register atm0
-                       exit
+                       exit 0
                }
        ;;
                }
        ;;
+       none|"") exit 0;;
 esac
 
 esac
 
+[ "${if%%[0-9]*}" = "ppp" ] && if="$(nvram get ${if_proto}_ifname)"
+
 if [ "${if%%[0-9]}" = "br" ]; then
        for sif in $(nvram get ${type}_ifnames); do
                hotplug_dev register "$sif"
 if [ "${if%%[0-9]}" = "br" ]; then
        for sif in $(nvram get ${type}_ifnames); do
                hotplug_dev register "$sif"
This page took 0.027023 seconds and 4 git commands to generate.