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 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 8 | config INIT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 9 | bool "init" |
| 10 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 11 | select FEATURE_SYSLOG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 12 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 13 | init is the first program run when the system boots. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 15 | config DEBUG_INIT |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 16 | bool "Debugging aid" |
Bernhard Reutner-Fischer | 35e1a07 | 2006-05-29 13:08:35 +0000 | [diff] [blame] | 17 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 18 | depends on INIT |
Bernhard Reutner-Fischer | 35e1a07 | 2006-05-29 13:08:35 +0000 | [diff] [blame] | 19 | help |
| 20 | Turn this on to disable all the dangerous |
| 21 | rebooting stuff when debugging. |
| 22 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 23 | config FEATURE_USE_INITTAB |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 24 | bool "Support reading an inittab file" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 25 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 26 | depends on INIT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 27 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 28 | Allow init to read an inittab file when the system boot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 29 | |
Denis Vlasenko | ec5631b | 2007-12-25 01:08:58 +0000 | [diff] [blame] | 30 | config FEATURE_KILL_REMOVED |
| 31 | bool "Support killing processes that have been removed from inittab" |
| 32 | default y |
| 33 | depends on FEATURE_USE_INITTAB |
| 34 | help |
Denis Vlasenko | 474d1c5 | 2008-01-07 19:06:47 +0000 | [diff] [blame] | 35 | When respawn entries are removed from inittab and a SIGHUP is |
| 36 | sent to init, this feature will kill the processes that have |
Denis Vlasenko | ec5631b | 2007-12-25 01:08:58 +0000 | [diff] [blame] | 37 | been removed. |
| 38 | |
| 39 | config FEATURE_KILL_DELAY |
Mike Frysinger | bb50fdf | 2007-12-25 04:30:14 +0000 | [diff] [blame] | 40 | int "How long to wait between TERM and KILL (0 - send TERM only)" if FEATURE_KILL_REMOVED |
Denis Vlasenko | ec5631b | 2007-12-25 01:08:58 +0000 | [diff] [blame] | 41 | range 0 1024 |
| 42 | default 0 |
Denis Vlasenko | ec5631b | 2007-12-25 01:08:58 +0000 | [diff] [blame] | 43 | help |
| 44 | With nonzero setting, init sends TERM, forks, child waits N |
| 45 | seconds, sends KILL and exits. Setting it too high is unwise |
| 46 | (child will hang around for too long and can actually kill |
| 47 | wrong process!) |
| 48 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 49 | config FEATURE_INIT_SCTTY |
Denis Vlasenko | a37e713 | 2008-02-19 02:57:07 +0000 | [diff] [blame] | 50 | bool "Run commands with leading dash with controlling tty" |
Paul Fox | 41a72ec | 2005-08-01 16:43:13 +0000 | [diff] [blame] | 51 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 52 | depends on INIT |
Paul Fox | 41a72ec | 2005-08-01 16:43:13 +0000 | [diff] [blame] | 53 | help |
Denis Vlasenko | a37e713 | 2008-02-19 02:57:07 +0000 | [diff] [blame] | 54 | If this option is enabled, init will try to give a controlling |
| 55 | tty to any command which has leading hyphen (often it's "-/bin/sh"). |
| 56 | More precisely, init will do "ioctl(STDIN_FILENO, TIOCSCTTY, 0)". |
| 57 | If device attached to STDIN_FILENO can be a ctty but is not yet |
| 58 | a ctty for other session, it will become this process' ctty. |
| 59 | This is not the traditional init behavour, but is often what you want |
| 60 | in an embedded system where the console is only accessed during |
| 61 | development or for maintenance. |
Denis Vlasenko | 2afabe8 | 2007-12-10 07:06:04 +0000 | [diff] [blame] | 62 | NB: using cttyhack applet may work better. |
Paul Fox | 41a72ec | 2005-08-01 16:43:13 +0000 | [diff] [blame] | 63 | |
Denis Vlasenko | ccd412d | 2007-03-05 19:55:30 +0000 | [diff] [blame] | 64 | config FEATURE_INIT_SYSLOG |
| 65 | bool "Enable init to write to syslog" |
| 66 | default n |
| 67 | depends on INIT |
| 68 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 69 | config FEATURE_EXTRA_QUIET |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 70 | bool "Be _extra_ quiet on boot" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 71 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 72 | depends on INIT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 73 | help |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 74 | Prevent init from logging some messages to the console during boot. |
| 75 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 76 | config FEATURE_INIT_COREDUMPS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 77 | bool "Support dumping core for child processes (debugging only)" |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 78 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 79 | depends on INIT |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 80 | help |
| 81 | If this option is enabled and the file /.init_enable_core |
| 82 | exists, then init will call setrlimit() to allow unlimited |
| 83 | core file sizes. If this option is disabled, processes |
| 84 | will not generate any core files. |
| 85 | |
| 86 | |
| 87 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 88 | config FEATURE_INITRD |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 89 | bool "Support running init from within an initrd (not initramfs)" |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 90 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 91 | depends on INIT |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 92 | help |
| 93 | Legacy support for running init under the old-style initrd. Allows |
| 94 | the name linuxrc to act as init, and it doesn't assume init is PID 1. |
| 95 | |
| 96 | This does not apply to initramfs, which runs /init as PID 1 and |
| 97 | requires no special support. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 98 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 99 | config HALT |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 100 | bool "poweroff, halt, and reboot" |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 101 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 102 | help |
Rob Landley | 6461291 | 2006-01-30 08:31:37 +0000 | [diff] [blame] | 103 | Stop all processes and either halt, reboot, or power off the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 104 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 105 | config MESG |
Mike Frysinger | f51d206 | 2005-09-24 23:14:11 +0000 | [diff] [blame] | 106 | bool "mesg" |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 107 | default n |
Mike Frysinger | f51d206 | 2005-09-24 23:14:11 +0000 | [diff] [blame] | 108 | help |
| 109 | Mesg controls access to your terminal by others. It is typically |
| 110 | used to allow or disallow other users to write to your terminal |
| 111 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 112 | endmenu |