1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 04:29:26 +03:00
openwrt-xburst/package/base-files/default/etc/init.d/network

15 lines
240 B
Plaintext
Raw Normal View History

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