Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Init Utilities" |
| 7 | |
| 8 | config CONFIG_INIT |
| 9 | bool "init" |
| 10 | default n |
| 11 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 12 | init is the first program run when the system boots. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 13 | |
| 14 | config CONFIG_FEATURE_USE_INITTAB |
| 15 | bool " Support reading an inittab file?" |
| 16 | default y |
| 17 | depends on CONFIG_INIT |
| 18 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 19 | Allow init to read an inittab file when the system boot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 20 | |
| 21 | config CONFIG_FEATURE_INITRD |
| 22 | bool " Support running init from within an initrd?" |
| 23 | default y |
| 24 | depends on CONFIG_INIT |
| 25 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 26 | Allow init to be called from an initrd as linuxrc. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 27 | |
| 28 | config CONFIG_FEATURE_INIT_COREDUMPS |
| 29 | bool " Support dumping core for child processes (debugging only)?" |
Eric Andersen | 0246222 | 2003-07-22 09:41:39 +0000 | [diff] [blame] | 30 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 31 | depends on CONFIG_INIT |
| 32 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 33 | If this option is enabled and the file /.init_enable_core |
| 34 | exists, then init will call setrlimit() to allow unlimited |
| 35 | core file sizes. If this option is disabled, processes |
| 36 | will not generate any core files. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 37 | |
| 38 | config CONFIG_FEATURE_EXTRA_QUIET |
| 39 | bool " Should init be _extra_ quiet on boot?" |
| 40 | default y |
| 41 | depends on CONFIG_INIT |
| 42 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 43 | Prevent init from logging some messages to the console |
| 44 | during boot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 45 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 46 | config CONFIG_HALT |
| 47 | bool "halt" |
| 48 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 49 | help |
Eric Andersen | 0246222 | 2003-07-22 09:41:39 +0000 | [diff] [blame] | 50 | Stop all processes and halt the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 51 | |
| 52 | config CONFIG_POWEROFF |
| 53 | bool "poweroff" |
| 54 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 55 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 56 | Stop all processes and (try to) power off the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 57 | |
| 58 | config CONFIG_REBOOT |
| 59 | bool "reboot" |
| 60 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 61 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 62 | Stop all processes and reboot the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 63 | |
Glenn L McGrath | 1e11c34 | 2003-05-11 14:52:39 +0000 | [diff] [blame] | 64 | config CONFIG_MINIT |
| 65 | bool "minit" |
| 66 | default n |
Eric Andersen | 0246222 | 2003-07-22 09:41:39 +0000 | [diff] [blame] | 67 | depends on ! CONFIG_INIT |
Glenn L McGrath | 1e11c34 | 2003-05-11 14:52:39 +0000 | [diff] [blame] | 68 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 69 | Minimal init, based on minit v0.9.1. This is a simple |
| 70 | init replacement that handles starting/stopping services, |
| 71 | and service dependencies. See http://www.fefe.de/minit/ |
| 72 | for additional information. |
Glenn L McGrath | 1e11c34 | 2003-05-11 14:52:39 +0000 | [diff] [blame] | 73 | |
| 74 | config CONFIG_PIDFILEHACK |
| 75 | bool "pidfilehack" |
| 76 | default y |
| 77 | depends on CONFIG_MINIT |
| 78 | help |
| 79 | pidfilehack is used by minit to run servers. |
| 80 | |
| 81 | config CONFIG_MSVC |
| 82 | bool "msvc" |
| 83 | default y |
| 84 | depends on CONFIG_MINIT |
| 85 | help |
| 86 | msvc is used to start and stop processes controlled by minit |
| 87 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 88 | # Should start-stop-daemon be moved under debianutils? |
| 89 | config CONFIG_START_STOP_DAEMON |
| 90 | bool "start-stop-daemon" |
| 91 | default y |
| 92 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 93 | start-stop-daemon is used to control the creation and |
| 94 | termination of system-level processes, usually the ones |
| 95 | started during the startup of the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 96 | |
| 97 | config CONFIG_MESG |
| 98 | bool "mesg" |
| 99 | default y |
| 100 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 101 | Mesg controls the access to your terminal by others. It |
| 102 | is typically used to allow or disallow other users to write |
| 103 | to your terminal |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 104 | |
| 105 | endmenu |
| 106 | |