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 | |
Mike Frysinger | 95ef165 | 2005-07-06 04:39:08 +0000 | [diff] [blame^] | 38 | config CONFIG_FEATURE_INIT_SWAPON |
| 39 | bool " Should init run swapon if short on memory?" |
| 40 | default y |
| 41 | depends on CONFIG_INIT |
| 42 | help |
| 43 | If the system has less than one megabyte of total memory, init |
| 44 | will run '/sbin/swapon -a' to add swap memory. |
| 45 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 46 | config CONFIG_FEATURE_EXTRA_QUIET |
| 47 | bool " Should init be _extra_ quiet on boot?" |
| 48 | default y |
| 49 | depends on CONFIG_INIT |
| 50 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 51 | Prevent init from logging some messages to the console |
| 52 | during boot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 53 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 54 | config CONFIG_HALT |
| 55 | bool "halt" |
| 56 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 57 | help |
Eric Andersen | 0246222 | 2003-07-22 09:41:39 +0000 | [diff] [blame] | 58 | Stop all processes and halt the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 59 | |
| 60 | config CONFIG_POWEROFF |
| 61 | bool "poweroff" |
| 62 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 63 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 64 | Stop all processes and (try to) power off the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 65 | |
| 66 | config CONFIG_REBOOT |
| 67 | bool "reboot" |
| 68 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 69 | help |
Eric Andersen | fb0c6af | 2003-07-14 19:18:43 +0000 | [diff] [blame] | 70 | Stop all processes and reboot the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 71 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 72 | config CONFIG_MESG |
| 73 | bool "mesg" |
| 74 | default y |
| 75 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 76 | Mesg controls access to your terminal by others. It is typically |
| 77 | used to allow or disallow other users to write to your terminal |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 78 | |
| 79 | endmenu |
| 80 | |