projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
atheros: split out the pci support patch
[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
61c1d6d
..
4090aba
100755
(executable)
--- a/
package/base-files/files/etc/init.d/rcS
+++ b/
package/base-files/files/etc/init.d/rcS
@@
-1,8
+1,11
@@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
+LOGGER="cat"
+[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t ''"
+
{
for i in /etc/rc.d/$1*; do
- $i $2 2>&1
+
[ -x $i ] &&
$i $2 2>&1
done
-} |
logger -s -p 6 -t ''
&
+} |
$LOGGER
&
This page took
0.021675 seconds
and
4
git commands to generate.