diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-08-06 03:39:36 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-08-06 03:39:36 +0200 |
commit | e4800c73e63e51cb143566ccf0ec0d95981969ff (patch) | |
tree | 1e1ae62a8ca1013868ced4cbdb1292ea660b1964 /package/busybox/config/init | |
parent | fbbbdb0707fda9cf8e7578f5c8bc785a0e7da2eb (diff) |
busybox: update to latest
Diffstat (limited to 'package/busybox/config/init')
-rw-r--r-- | package/busybox/config/init/Config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/busybox/config/init/Config.in b/package/busybox/config/init/Config.in index 9e17c790c..33ddd603b 100644 --- a/package/busybox/config/init/Config.in +++ b/package/busybox/config/init/Config.in @@ -63,6 +63,17 @@ config BUSYBOX_REBOOT help Stop all processes and reboot the system. +config BUSYBOX_FEATURE_WAIT_FOR_INIT + bool "Before signaling init, make sure it is ready for it" + default y + depends on BUSYBOX_HALT || BUSYBOX_POWEROFF || BUSYBOX_REBOOT + help + In rare cases, poweroff may be commanded by firmware to OS + even before init process exists. On Linux, this spawns + "/sbin/poweroff" very early. This option adds code + which checks that init is ready to receive poweroff + commands. Code size increase of ~80 bytes. + config BUSYBOX_FEATURE_CALL_TELINIT bool "Call telinit on shutdown and reboot" default n @@ -149,6 +160,11 @@ config BUSYBOX_FEATURE_INIT_SYSLOG default y depends on BUSYBOX_INIT +config BUSYBOX_FEATURE_INIT_QUIET + bool "Be quiet on boot (no 'init started:' message)" + default y + depends on BUSYBOX_INIT || BUSYBOX_LINUXRC + config BUSYBOX_FEATURE_EXTRA_QUIET bool "Be _extra_ quiet on boot" default y |