Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +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 | mainmenu_option next_comment |
| 7 | comment 'Init Utilities' |
| 8 | |
| 9 | |
| 10 | bool 'init' CONFIG_INIT |
| 11 | if [ "$CONFIG_INIT" = "y" ]; then |
| 12 | bool ' Support reading an inittab file?' CONFIG_FEATURE_USE_INITTAB |
| 13 | bool ' Support running init from within an initrd?' CONFIG_FEATURE_INITRD |
| 14 | bool ' Support dumping core for child processes (debugging only)?' CONFIG_FEATURE_INIT_COREDUMPS |
| 15 | bool ' Should init be _extra_ quiet on boot?' CONFIG_FEATURE_EXTRA_QUIET |
| 16 | |
| 17 | # Some more apps that are meaningless without BusyBox running as init |
| 18 | bool 'halt' CONFIG_HALT |
| 19 | bool 'poweroff' CONFIG_POWEROFF |
| 20 | bool 'reboot' CONFIG_REBOOT |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 21 | fi |
| 22 | |
Eric Andersen | 282671b | 2001-11-10 12:07:24 +0000 | [diff] [blame] | 23 | bool 'start-stop-daemon' CONFIG_START_STOP_DAEMON |
| 24 | bool 'run-parts' CONFIG_RUN_PARTS |
Eric Andersen | 6cf47a7 | 2001-10-31 10:24:36 +0000 | [diff] [blame] | 25 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 26 | endmenu |
| 27 | |