diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-16 19:16:51 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-16 19:16:51 +0000 |
commit | f87a57f5afd43676c71cba1d6f691bfac7fe752c (patch) | |
tree | 0d972e85e9dc051001e7f495aca7c24491395d77 /target/linux/package | |
parent | 0ccf2d8759b60479100612932611ac33e5d5fb50 (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')
-rwxr-xr-x | target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network | 16 |
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 df7c6b3515..0000000000 --- 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 |