diff options
-rw-r--r-- | init/init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c index 14136859f..3748a1507 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -86,7 +86,6 @@ static const char *log_console = VC_5; | |||
86 | enum { | 86 | enum { |
87 | L_LOG = 0x1, | 87 | L_LOG = 0x1, |
88 | L_CONSOLE = 0x2, | 88 | L_CONSOLE = 0x2, |
89 | MAYBE_CONSOLE = L_CONSOLE * !ENABLE_FEATURE_EXTRA_QUIET, | ||
90 | #ifndef RB_HALT_SYSTEM | 89 | #ifndef RB_HALT_SYSTEM |
91 | RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */ | 90 | RB_HALT_SYSTEM = 0xcdef0123, /* FIXME: this overflows enum */ |
92 | RB_ENABLE_CAD = 0x89abcdef, | 91 | RB_ENABLE_CAD = 0x89abcdef, |
@@ -856,8 +855,10 @@ int init_main(int argc UNUSED_PARAM, char **argv) | |||
856 | if (argv[1]) | 855 | if (argv[1]) |
857 | xsetenv("RUNLEVEL", argv[1]); | 856 | xsetenv("RUNLEVEL", argv[1]); |
858 | 857 | ||
858 | #if ENABLE_FEATURE_EXTRA_QUIET | ||
859 | /* Hello world */ | 859 | /* Hello world */ |
860 | message(MAYBE_CONSOLE | L_LOG, "init started: %s", bb_banner); | 860 | message(L_CONSOLE | L_LOG, "init started: %s", bb_banner); |
861 | #endif | ||
861 | 862 | ||
862 | /* Make sure there is enough memory to do something useful. */ | 863 | /* Make sure there is enough memory to do something useful. */ |
863 | if (ENABLE_SWAPONOFF) { | 864 | if (ENABLE_SWAPONOFF) { |