1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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
This commit is contained in:
nbd
2007-03-02 13:21:33 +00:00
parent 55b644cbff
commit ecec813b40
2 changed files with 22 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
# Copyright (C) 2006 OpenWrt.org
START=40
start() {
boot() {
setup_switch() { return 0; }
include /lib/network
@@ -12,3 +12,16 @@ start() {
/sbin/wifi up
}
start() {
ifup -a
/sbin/wifi up
}
restart() {
ifup -a
/sbin/wifi up
}
stop() {
ifdown -a
}