]> git.enpas.org Git - openwrt.git/blob - package/base-files/default/etc/init.d/S40network
add new rc.common for standardized init scripts, convert existing init scripts
[openwrt.git] / package / base-files / default / etc / init.d / S40network
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 start() {
5         setup_switch() { return 0; }
6
7         include /lib/network
8         setup_switch
9         /sbin/wifi
10 }
11