projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
remove memleak patch because of issues with premature freeing of memory - i will...
[openwrt.git]
/
package
/
base-files
/
files
/
etc
/
init.d
/
rcS
diff --git
a/package/base-files/files/etc/init.d/rcS
b/package/base-files/files/etc/init.d/rcS
index
755e08b
..
b44f441
100755
(executable)
--- a/
package/base-files/files/etc/init.d/rcS
+++ b/
package/base-files/files/etc/init.d/rcS
@@
-1,10
+1,8
@@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
-(
- for i in /etc/rc.d/
S
*; do
-
$i boot
2>&1
+{
+ for i in /etc/rc.d/
$1
*; do
+
[ -x $i ] && $i $2
2>&1
done
-
- sysctl -p >&-
-) | logger -s -p 6 -t '' &
+} | logger -s -p 6 -t '' &
This page took
0.029527 seconds
and
4
git commands to generate.