add 1 second delay for natsemi ifup (sometimes won't come up otherwise)
[openwrt.git] / package / base-files / default / sbin / ifup
index c40de38..c7055d4 100755 (executable)
@@ -5,12 +5,8 @@
 
 config_get iftype "$1" type
 case "$iftype" in
 
 config_get iftype "$1" type
 case "$iftype" in
-       bridge)
-               config_get ifname "$1" ifnames
-       ;;
-       *)
-               config_get ifname "$1" ifname
-       ;;
+       bridge) config_get ifname "$1" ifnames;;
+       *) config_get ifname "$1" ifname;;
 esac
 
 for dev in $ifname; do
 esac
 
 for dev in $ifname; do
This page took 0.021776 seconds and 4 git commands to generate.