projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
wireless config gets regenerated not only when it does not exist, buit also if it...
[openwrt.git]
/
package
/
base-files
/
files
/
etc
/
init.d
/
network
1
#!/bin/sh /etc/rc.common
2
# Copyright (C) 2006 OpenWrt.org
3
4
START
=
40
5
STOP
=
40
6
7
boot
() {
8
setup_switch
() {
return
0
; }
9
10
include
/
lib
/
network
11
setup_switch
12
[
-s
/
etc
/
config
/
wireless
]
|| \
13
/
sbin
/
wifi detect
> /
etc
/
config
/
wireless
14
/
sbin
/
wifi up
15
}
16
17
start
() {
18
ifup
-a
19
/
sbin
/
wifi up
20
}
21
22
restart
() {
23
ifup
-a
24
/
sbin
/
wifi up
25
}
26
27
stop
() {
28
ifdown
-a
29
}
This page took
0.04176 seconds
and
5
git commands to generate.