Openwrt/package/base-files/default/etc/init.d/S40network
2006-10-15 15:27:34 +00:00

14 lines
231 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# 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
}