mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
busybox:
- faster starting of various services
This commit is contained in:
parent
25b2afeaaa
commit
924f3ffd4d
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user