Run through indent, fix comments
[oweals/busybox.git] / init / config.in
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
21 fi
22
23 bool 'start-stop-daemon'            CONFIG_START_STOP_DAEMON
24 bool 'run-parts'                    CONFIG_RUN_PARTS
25         
26 endmenu
27