diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-04-21 12:02:34 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-04-21 12:02:34 +0000 |
commit | 2fdeecdb4736b41f8ceb01e451abc815712f32ef (patch) | |
tree | d411b637a65025f32816ac2cc4352e913d713cb2 /package/base-files/files | |
parent | 3f8ac1680c95b1989b11818f12b5cc324f89cbb5 (diff) | |
download | mtk-20170518-2fdeecdb4736b41f8ceb01e451abc815712f32ef.zip mtk-20170518-2fdeecdb4736b41f8ceb01e451abc815712f32ef.tar.gz mtk-20170518-2fdeecdb4736b41f8ceb01e451abc815712f32ef.tar.bz2 |
add an explicit 'sysinit' tag for logging initscripts output, instead of '' that was logged as is
SVN-Revision: 15323
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-x | package/base-files/files/etc/init.d/rcS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/rcS b/package/base-files/files/etc/init.d/rcS index 4090aba..8c9114d 100755 --- a/package/base-files/files/etc/init.d/rcS +++ b/package/base-files/files/etc/init.d/rcS @@ -2,7 +2,7 @@ # Copyright (C) 2006 OpenWrt.org LOGGER="cat" -[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t ''" +[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t sysinit" { for i in /etc/rc.d/$1*; do |