diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-10 15:24:13 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-10 15:24:13 +0100 |
commit | f35ad3bd1287627fc6ca7cc9c1f48b186257dd87 (patch) | |
tree | 1cea61ffd900581a302bda2520371777b6b511ea /init | |
parent | 2b4c258e74d033b75b7f34bb384290eceb5da8a6 (diff) |
init: rename FEATURE_EXTRA_QUIET -> FEATURE_INIT_QUIET
The former name had no INIT anywhere in its name, sounded generic
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/init/init.c b/init/init.c index 8db4ced58..833759341 100644 --- a/init/init.c +++ b/init/init.c @@ -17,7 +17,7 @@ //config: init is the first program run when the system boots. //config: //config:config LINUXRC -//config: bool "Support running init from within an initrd (not initramfs)" +//config: bool "linuxrc: support running init from initrd (not initramfs)" //config: default y //config: select FEATURE_SYSLOG //config: help @@ -74,12 +74,10 @@ //config: default y //config: depends on INIT || LINUXRC //config: -//config:config FEATURE_EXTRA_QUIET -//config: bool "Be _extra_ quiet on boot" +//config:config FEATURE_INIT_QUIET +//config: bool "Be quiet on boot (no 'init started:' message)" //config: default y //config: depends on INIT || LINUXRC -//config: help -//config: Prevent init from logging some messages to the console during boot. //config: //config:config FEATURE_INIT_COREDUMPS //config: bool "Support dumping core for child processes (debugging only)" @@ -1098,7 +1096,7 @@ int init_main(int argc UNUSED_PARAM, char **argv) if (argv[1]) xsetenv("RUNLEVEL", argv[1]); -#if !ENABLE_FEATURE_EXTRA_QUIET +#if !ENABLE_FEATURE_INIT_QUIET /* Hello world */ message(L_CONSOLE | L_LOG, "init started: %s", bb_banner); #endif |