Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'init/init.c')
-rw-r--r--init/init.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c
index 350ea62a8..8e28f076f 100644
--- a/init/init.c
+++ b/init/init.c
@@ -843,11 +843,19 @@ extern int init_main(int argc, char **argv)
/* Hello world */
#ifndef DEBUG_INIT
- message(LOG,
+ message(
+#if ! defined BB_FEATURE_EXTRA_QUIET
+ CONSOLE|
+#endif
+ LOG,
"init started: BusyBox v%s (%s) multi-call binary\r\n",
BB_VER, BB_BT);
#else
- message(LOG,
+ message(
+#if ! defined BB_FEATURE_EXTRA_QUIET
+ CONSOLE|
+#endif
+ LOG,
"init(%d) started: BusyBox v%s (%s) multi-call binary\r\n",
getpid(), BB_VER, BB_BT);
#endif