projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
implement simple device autodetection for wifi drivers
[openwrt.git]
/
package
/
base-files
/
default
/
etc
/
init.d
/
S40network
diff --git
a/package/base-files/default/etc/init.d/S40network
b/package/base-files/default/etc/init.d/S40network
index
c4226d3
..
c772036
100755
(executable)
--- a/
package/base-files/default/etc/init.d/S40network
+++ b/
package/base-files/default/etc/init.d/S40network
@@
-1,16
+1,13
@@
-#!/bin/sh
-. /etc/functions.sh
-[ -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
+ [ -e /etc/config/wireless ] || \
+ /sbin/wifi detect > /etc/config/wireless
+ /sbin/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
This page took
0.020274 seconds
and
4
git commands to generate.