busybox: logging bootprocess to /var/log/messages

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-10-10 19:39:16 +02:00
parent c6224a0530
commit da30fcd3c5

View File

@ -24,7 +24,9 @@
# functions
progress() {
if test "$DEBUG" = yes; then
echo "### $1 ###"
logger -s -t Boot "### $1 ###"
else
logger -t Boot "### $1 ###"
fi
}