openwrtv3/package/base-files/default/etc/init.d/S40network

14 lines
231 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() {
setup_switch() { return 0; }
include /lib/network
setup_switch
[ -e /etc/config/wireless ] || \
/sbin/wifi detect > /etc/config/wireless
/sbin/wifi up
}