fix displayed name in init script help text
[openwrt.git] / package / base-files / default / etc / init.d / S40network
index df7c6b3..be04504 100755 (executable)
@@ -1,16 +1,11 @@
-#!/bin/sh
-. /etc/functions.sh
-[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
-case "$1" in
-  start|restart)
-    ifup lan
-    ifup wan
-    ifup wifi
-    wifi up
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start() {
+       setup_switch() { return 0; }
+
+       include /lib/network
+       setup_switch
+       /sbin/wifi
+}
 
-    for route in $(nvram get static_route); do {
-      eval "set $(echo $route | sed 's/:/ /g')"
-      $DEBUG route add -net $1 netmask $2 gw $3 metric $4 dev $5
-    } done
-    ;;
-esac
This page took 0.020412 seconds and 4 git commands to generate.