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)?" |
| 30 | default y |
| 31 | depends on CONFIG_INIT |
| 32 | help |
| 33 | Please submit a patch to add help text for this item. |
| 34 | |
| 35 | config CONFIG_FEATURE_EXTRA_QUIET |
| 36 | bool " Should init be _extra_ quiet on boot?" |
| 37 | default y |
| 38 | depends on CONFIG_INIT |
| 39 | help |
| 40 | Please submit a patch to add help text for this item. |
| 41 | |
| 42 | # Some apps that are meaningless without BusyBox running as init |
| 43 | config CONFIG_HALT |
| 44 | bool "halt" |
| 45 | default y |
| 46 | depends on CONFIG_INIT |
| 47 | help |
| 48 | Please submit a patch to add help text for this item. |
| 49 | |
| 50 | config CONFIG_POWEROFF |
| 51 | bool "poweroff" |
| 52 | default y |
| 53 | depends on CONFIG_INIT |
| 54 | help |
| 55 | Please submit a patch to add help text for this item. |
| 56 | |
| 57 | config CONFIG_REBOOT |
| 58 | bool "reboot" |
| 59 | default y |
| 60 | depends on CONFIG_INIT |
| 61 | help |
| 62 | Please submit a patch to add help text for this item. |
| 63 | |
Glenn L McGrath | 1e11c34 | 2003-05-11 14:52:39 +0000 | [diff] [blame] | 64 | config CONFIG_MINIT |
| 65 | bool "minit" |
| 66 | default n |
| 67 | help |
| 68 | Minimal init, based on minit v0.9.1 |
| 69 | |
| 70 | config CONFIG_PIDFILEHACK |
| 71 | bool "pidfilehack" |
| 72 | default y |
| 73 | depends on CONFIG_MINIT |
| 74 | help |
| 75 | pidfilehack is used by minit to run servers. |
| 76 | |
| 77 | config CONFIG_MSVC |
| 78 | bool "msvc" |
| 79 | default y |
| 80 | depends on CONFIG_MINIT |
| 81 | help |
| 82 | msvc is used to start and stop processes controlled by minit |
| 83 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 84 | # Should start-stop-daemon be moved under debianutils? |
| 85 | config CONFIG_START_STOP_DAEMON |
| 86 | bool "start-stop-daemon" |
| 87 | default y |
| 88 | help |
| 89 | Please submit a patch to add help text for this item. |
| 90 | |
| 91 | config CONFIG_MESG |
| 92 | bool "mesg" |
| 93 | default y |
| 94 | help |
| 95 | Please submit a patch to add help text for this item. |
| 96 | |
| 97 | endmenu |
| 98 | |