blob: 58fe1d8e3e32077af30336a4d122dbd5991b81a5 [file] [log] [blame]
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu_option next_comment
7comment 'Init Utilities'
8
9
10bool 'init' CONFIG_INIT
11if [ "$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 Andersenbdfd0d72001-10-24 05:00:29 +000021fi
22
Eric Andersen282671b2001-11-10 12:07:24 +000023bool 'start-stop-daemon' CONFIG_START_STOP_DAEMON
24bool 'run-parts' CONFIG_RUN_PARTS
Eric Andersen6cf47a72001-10-31 10:24:36 +000025
Eric Andersenbdfd0d72001-10-24 05:00:29 +000026endmenu
27