mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-11 15:33:03 +00:00
2d072c5997
SVN-Revision: 5113
14 lines
231 B
Bash
Executable File
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
|
|
}
|
|
|