openwrtv4/package/base-files/files/etc/init.d/network

31 lines
360 B
Text
Raw Normal View History

#!/bin/sh /etc/rc.common
2006-08-01 23:19:54 +00:00
# Copyright (C) 2006 OpenWrt.org
START=40
STOP=40
boot() {
setup_switch() { return 0; }
include /lib/network
setup_switch
[ -s /etc/config/wireless ] || \
/sbin/wifi detect > /etc/config/wireless
/sbin/wifi up
}
start() {
ifup -a
/sbin/wifi up
}
restart() {
2008-03-04 15:50:41 +00:00
setup_switch
ifup -a
/sbin/wifi up
}
stop() {
ifdown -a
}