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 | |
Paul Fox | 41a72ec | 2005-08-01 16:43:13 +0000 | [diff] [blame] | 38 | config CONFIG_FEATURE_INIT_SCTTY |
| 39 | bool " Support running commands with a controlling-tty?" |
| 40 | default n |
| 41 | depends on CONFIG_INIT |
| 42 | help |
| 43 | If this option is enabled a command starting with hyphen (-) |
| 44 | is run in its own session (setsid(2)) and possibly with a |
| 45 | controlling tty (TIOCSCTTY). This is not the traditional init |
| 46 | behavour, but is often what you want in an embedded system where |
| 47 | the console is only accessed during development or for maintenance. |
| 48 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 49 | config CONFIG_FEATURE_EXTRA_QUIET |
| 50 | bool " Should init be _extra_ quiet on boot?" |
| 51 | default y |
| 52 | depends on CONFIG_INIT |
| 53 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 54 | Prevent init from logging some messages to the console |
| 55 | during boot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 56 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 57 | config CONFIG_HALT |
| 58 | bool "halt" |
| 59 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 60 | help |
Eric Andersen | 0246222 | 2003-07-22 09:41:39 +0000 | [diff] [blame] | 61 | Stop all processes and halt the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 62 | |
Mike Frysinger | f51d206 | 2005-09-24 23:14:11 +0000 | [diff] [blame] | 63 | config CONFIG_MESG |
| 64 | bool "mesg" |
| 65 | default y |
| 66 | help |
| 67 | Mesg controls access to your terminal by others. It is typically |
| 68 | used to allow or disallow other users to write to your terminal |
| 69 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 70 | config CONFIG_POWEROFF |
| 71 | bool "poweroff" |
| 72 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 73 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 74 | Stop all processes and (try to) power off the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 75 | |
| 76 | config CONFIG_REBOOT |
| 77 | bool "reboot" |
| 78 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 79 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 80 | Stop all processes and reboot the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 81 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 82 | endmenu |
| 83 | |