From da30fcd3c53828b71d53071830027104b1797a3d Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 10 Oct 2010 19:39:16 +0200 Subject: [PATCH] busybox: logging bootprocess to /var/log/messages Signed-off-by: Stephan Raue --- packages/sysutils/busybox/config/profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/sysutils/busybox/config/profile b/packages/sysutils/busybox/config/profile index 1b2cce248d..d9eef79bb2 100644 --- a/packages/sysutils/busybox/config/profile +++ b/packages/sysutils/busybox/config/profile @@ -24,7 +24,9 @@ # functions progress() { if test "$DEBUG" = yes; then - echo "### $1 ###" + logger -s -t Boot "### $1 ###" + else + logger -t Boot "### $1 ###" fi }