- faster starting of various services
This commit is contained in:
Stephan Raue 2009-12-01 11:11:16 +01:00
parent 25b2afeaaa
commit 924f3ffd4d
4 changed files with 22 additions and 12 deletions

View File

@ -4,11 +4,13 @@
#
# runlevels: openelec, text, debug
. /etc/sysconfig
(
. /etc/sysconfig
progress "Starting Syslog daemon"
progress "Starting Syslog daemon"
mkdir -p /var/log
syslogd &
syslogd
)&
exit 0

View File

@ -4,8 +4,12 @@
#
# runlevels: openelec, text, debug
. /etc/sysconfig
(
. /etc/sysconfig
progress "saving Bootdate"
progress "saving Bootdate"
/bin/date > /tmp/bootdate &
/bin/date > /tmp/bootdate
)&
exit 0

View File

@ -4,11 +4,13 @@
#
# runlevels: openelec, text, debug
. /etc/sysconfig
(
. /etc/sysconfig
progress "Starting CRON daemon"
progress "Starting CRON daemon"
mkdir -p /var/spool/cron/crontabs
crond -S &
crond -S
)&
exit 0

View File

@ -4,10 +4,12 @@
#
# runlevels: openelec, text, debug
. /etc/sysconfig
(
. /etc/sysconfig
progress "Starting ACPI daemon"
progress "Starting ACPI daemon"
acpid /dev/input/event* 2>&1 > /dev/null &
acpid /dev/input/event* 2>&1 > /dev/null
)&
exit 0