summaryrefslogtreecommitdiffstats
path: root/target/linux/package/base-files/files
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-16 19:16:51 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-16 19:16:51 +0000
commitf87a57f5afd43676c71cba1d6f691bfac7fe752c (patch)
tree0d972e85e9dc051001e7f495aca7c24491395d77 /target/linux/package/base-files/files
parent0ccf2d8759b60479100612932611ac33e5d5fb50 (diff)
move natsemi module into the kernel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2997 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package/base-files/files')
-rwxr-xr-xtarget/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network16
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network b/target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network
deleted file mode 100755
index df7c6b351..000000000
--- a/target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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
-
- 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