1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 00:46:47 +03:00
openwrt-xburst/package/base-files/files/etc/init.d/network
jow c07af08426 [package] base-files: also regenerate wifi config if existing config contains only whitespace
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20669 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-03 13:31:59 +00:00

36 lines
447 B
Bash
Executable File

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