[backfire] add /etc/openwrt_release & /etc/openwrt_version files
[openwrt-10.03/.git] / package / base-files / files / etc / init.d / network
index 75103ec073d9d2ad9b59ca0b197c332f00731284..3587c24aaa87e50cd46ab158f39c9e2f99d5e6c9 100755 (executable)
@@ -2,20 +2,9 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=40
-STOP=40
-
-config_cb() {
-       local cfg_type="$1"
-
-       case "$cfg_type" in
-               interface)
-                       append networks "$2" "$N"
-               ;;
-       esac
-}
+STOP=90
 
 boot() {
-       uci_load network
        setup_switch() { return 0; }
 
        include /lib/network
@@ -23,18 +12,9 @@ boot() {
        [ -s /etc/config/wireless ] || \
                /sbin/wifi detect > /etc/config/wireless
        /sbin/wifi up
-       for network in $networks; do
-               config_get startupcheck $network started
-               [ "$startupcheck" = "" ] && ifup $network
-       done
 }
 
 start() {
-       ifup -a
-       /sbin/wifi up
-}
-
-restart() {
        setup_switch() { return 0; }
        
        include /lib/network
@@ -46,3 +26,7 @@ restart() {
 stop() {
        ifdown -a
 }
+
+restart() {
+       start
+}