2006-10-04 23:05:48 +03:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-03-15 02:44:15 +02:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-07-30 06:09:09 +03:00
|
|
|
|
2006-10-16 00:03:30 +03:00
|
|
|
START=40
|
2010-01-30 20:17:48 +02:00
|
|
|
STOP=90
|
2007-05-10 13:07:38 +03:00
|
|
|
|
2007-03-02 15:21:33 +02:00
|
|
|
boot() {
|
2006-10-04 23:05:48 +03:00
|
|
|
setup_switch() { return 0; }
|
|
|
|
|
|
|
|
include /lib/network
|
|
|
|
setup_switch
|
2011-06-07 20:00:43 +03:00
|
|
|
|
2010-04-03 16:31:59 +03:00
|
|
|
grep -qs config /etc/config/wireless && {
|
|
|
|
/sbin/wifi up
|
|
|
|
}
|
2010-05-06 22:50:22 +03:00
|
|
|
|
|
|
|
scan_interfaces
|
|
|
|
|
|
|
|
local ifc
|
|
|
|
for ifc in $interfaces; do
|
|
|
|
local proto
|
|
|
|
config_get proto "$ifc" proto
|
|
|
|
|
2010-05-28 02:04:56 +03:00
|
|
|
local auto
|
|
|
|
config_get_bool auto "$ifc" auto 1
|
|
|
|
|
|
|
|
type "coldplug_interface_$proto" >/dev/null && [ "$auto" = 1 ] && \
|
2010-05-06 22:50:22 +03:00
|
|
|
coldplug_interface_$proto "$ifc"
|
|
|
|
done
|
2006-10-04 23:05:48 +03:00
|
|
|
}
|
2006-07-30 06:09:09 +03:00
|
|
|
|
2007-03-02 15:21:33 +02:00
|
|
|
start() {
|
2008-04-15 19:29:49 +03:00
|
|
|
setup_switch() { return 0; }
|
|
|
|
|
2008-04-12 17:57:47 +03:00
|
|
|
include /lib/network
|
2008-03-04 17:50:41 +02:00
|
|
|
setup_switch
|
2007-03-02 15:21:33 +02:00
|
|
|
ifup -a
|
|
|
|
/sbin/wifi up
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ifdown -a
|
|
|
|
}
|
2010-03-15 16:02:49 +02:00
|
|
|
|
|
|
|
restart() {
|
|
|
|
start
|
|
|
|
}
|