busybox: update to 1.27.2
[openwrt/staging/rmilecki.git] / package / utils / busybox / config / init / Config.in
index cd1a3451972cfcc10f8688e23f28974d85af6621..072df33893d106f6bb9c03311f4d6b8a93575db3 100644 (file)
@@ -89,7 +89,7 @@ config BUSYBOX_CONFIG_INIT
          init is the first program run when the system boots.
 
 config BUSYBOX_CONFIG_LINUXRC
-       bool "Support running init from within an initrd (not initramfs)"
+       bool "linuxrc: support running init from initrd (not initramfs)"
        default BUSYBOX_DEFAULT_LINUXRC
        select BUSYBOX_CONFIG_FEATURE_SYSLOG
        help
@@ -145,13 +145,15 @@ config BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG
        bool "Enable init to write to syslog"
        default BUSYBOX_DEFAULT_FEATURE_INIT_SYSLOG
        depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
+       help
+         If selected, some init messages are sent to syslog.
+         Otherwise, they are sent to VT #5 if linux virtual tty is detected
+         (if not, no separate logging is done).
 
-config BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET
-       bool "Be _extra_ quiet on boot"
-       default BUSYBOX_DEFAULT_FEATURE_EXTRA_QUIET
+config BUSYBOX_CONFIG_FEATURE_INIT_QUIET
+       bool "Be quiet on boot (no 'init started:' message)"
+       default BUSYBOX_DEFAULT_FEATURE_INIT_QUIET
        depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
-       help
-         Prevent init from logging some messages to the console during boot.
 
 config BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS
        bool "Support dumping core for child processes (debugging only)"
@@ -176,36 +178,18 @@ config BUSYBOX_CONFIG_INIT_TERMINAL_TYPE
          sets TERM to "vt102" if one is found.
 
 config BUSYBOX_CONFIG_FEATURE_INIT_MODIFY_CMDLINE
-       bool "Modify the command-line to \"init\""
+       bool "Clear init's command line"
        default BUSYBOX_DEFAULT_FEATURE_INIT_MODIFY_CMDLINE
        depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
        help
          When launched as PID 1 and after parsing its arguments, init
          wipes all the arguments but argv[0] and rewrites argv[0] to
-         contain only "init", so that its command-line appears solely as
+         contain only "init", so that its command line appears solely as
          "init" in tools such as ps.
          If this option is set to Y, init will keep its original behavior,
          otherwise, all the arguments including argv[0] will be preserved,
          be they parsed or ignored by init.
          The original command-line used to launch init can then be
          retrieved in /proc/1/cmdline on Linux, for example.
-config BUSYBOX_CONFIG_MESG
-       bool "mesg"
-       default BUSYBOX_DEFAULT_MESG
-       help
-         Mesg controls access to your terminal by others. It is typically
-         used to allow or disallow other users to write to your terminal
-
-config BUSYBOX_CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP
-       bool "Enable writing to tty only by group, not by everybody"
-       default BUSYBOX_DEFAULT_FEATURE_MESG_ENABLE_ONLY_GROUP
-       depends on BUSYBOX_CONFIG_MESG
-       help
-         Usually, ttys are owned by group "tty", and "write" tool is
-         setgid to this group. This way, "mesg y" only needs to enable
-         "write by owning group" bit in tty mode.
-
-         If you set this option to N, "mesg y" will enable writing
-         by anybody at all. This is not recommended.
 
 endmenu