atheros: split out the pci support patch
[openwrt.git] / package / base-files / files / etc / init.d / rcS
index 61c1d6d..4090aba 100755 (executable)
@@ -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.