diff options
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -843,11 +843,19 @@ extern int init_main(int argc, char **argv) | |||
843 | 843 | ||
844 | /* Hello world */ | 844 | /* Hello world */ |
845 | #ifndef DEBUG_INIT | 845 | #ifndef DEBUG_INIT |
846 | message(LOG, | 846 | message( |
847 | #if ! defined BB_FEATURE_EXTRA_QUIET | ||
848 | CONSOLE| | ||
849 | #endif | ||
850 | LOG, | ||
847 | "init started: BusyBox v%s (%s) multi-call binary\r\n", | 851 | "init started: BusyBox v%s (%s) multi-call binary\r\n", |
848 | BB_VER, BB_BT); | 852 | BB_VER, BB_BT); |
849 | #else | 853 | #else |
850 | message(LOG, | 854 | message( |
855 | #if ! defined BB_FEATURE_EXTRA_QUIET | ||
856 | CONSOLE| | ||
857 | #endif | ||
858 | LOG, | ||
851 | "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n", | 859 | "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n", |
852 | getpid(), BB_VER, BB_BT); | 860 | getpid(), BB_VER, BB_BT); |
853 | #endif | 861 | #endif |