1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-28 06:16:15 +02:00
openwrt-xburst/package/base-files/files/etc/init.d/network
nbd ecec813b40 add support for if{down,up} -a and implement proper start/stop/restart for /etc/init.d/network
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6455 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-03-02 13:21:33 +00:00

28 lines
337 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=40
boot() {
setup_switch() { return 0; }
include /lib/network
setup_switch
[ -e /etc/config/wireless ] || \
/sbin/wifi detect > /etc/config/wireless
/sbin/wifi up
}
start() {
ifup -a
/sbin/wifi up
}
restart() {
ifup -a
/sbin/wifi up
}
stop() {
ifdown -a
}