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) | |
| download | busybox-w32-f35ad3bd1287627fc6ca7cc9c1f48b186257dd87.tar.gz busybox-w32-f35ad3bd1287627fc6ca7cc9c1f48b186257dd87.tar.bz2 busybox-w32-f35ad3bd1287627fc6ca7cc9c1f48b186257dd87.zip | |
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 @@ | |||
| 17 | //config: init is the first program run when the system boots. | 17 | //config: init is the first program run when the system boots. |
| 18 | //config: | 18 | //config: |
| 19 | //config:config LINUXRC | 19 | //config:config LINUXRC |
| 20 | //config: bool "Support running init from within an initrd (not initramfs)" | 20 | //config: bool "linuxrc: support running init from initrd (not initramfs)" |
| 21 | //config: default y | 21 | //config: default y |
| 22 | //config: select FEATURE_SYSLOG | 22 | //config: select FEATURE_SYSLOG |
| 23 | //config: help | 23 | //config: help |
| @@ -74,12 +74,10 @@ | |||
| 74 | //config: default y | 74 | //config: default y |
| 75 | //config: depends on INIT || LINUXRC | 75 | //config: depends on INIT || LINUXRC |
| 76 | //config: | 76 | //config: |
| 77 | //config:config FEATURE_EXTRA_QUIET | 77 | //config:config FEATURE_INIT_QUIET |
| 78 | //config: bool "Be _extra_ quiet on boot" | 78 | //config: bool "Be quiet on boot (no 'init started:' message)" |
| 79 | //config: default y | 79 | //config: default y |
| 80 | //config: depends on INIT || LINUXRC | 80 | //config: depends on INIT || LINUXRC |
| 81 | //config: help | ||
| 82 | //config: Prevent init from logging some messages to the console during boot. | ||
| 83 | //config: | 81 | //config: |
| 84 | //config:config FEATURE_INIT_COREDUMPS | 82 | //config:config FEATURE_INIT_COREDUMPS |
| 85 | //config: bool "Support dumping core for child processes (debugging only)" | 83 | //config: bool "Support dumping core for child processes (debugging only)" |
| @@ -1098,7 +1096,7 @@ int init_main(int argc UNUSED_PARAM, char **argv) | |||
| 1098 | if (argv[1]) | 1096 | if (argv[1]) |
| 1099 | xsetenv("RUNLEVEL", argv[1]); | 1097 | xsetenv("RUNLEVEL", argv[1]); |
| 1100 | 1098 | ||
| 1101 | #if !ENABLE_FEATURE_EXTRA_QUIET | 1099 | #if !ENABLE_FEATURE_INIT_QUIET |
| 1102 | /* Hello world */ | 1100 | /* Hello world */ |
| 1103 | message(L_CONSOLE | L_LOG, "init started: %s", bb_banner); | 1101 | message(L_CONSOLE | L_LOG, "init started: %s", bb_banner); |
| 1104 | #endif | 1102 | #endif |
