OSDN Git Service

Andreas Mohr writes:
[android-x86/external-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 menu "Init Utilities"
7
8 config CONFIG_INIT
9         bool "init"
10         default n
11         help
12           init is the first program run when the system boots.
13
14 config CONFIG_FEATURE_USE_INITTAB
15         bool "  Support reading an inittab file?"
16         default y
17         depends on CONFIG_INIT
18         help
19           Allow init to read an inittab file when the system boot.
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
26           Allow init to be called from an initrd as linuxrc.
27
28 config CONFIG_FEATURE_INIT_COREDUMPS
29         bool "  Support dumping core for child processes (debugging only)?"
30         default n
31         depends on CONFIG_INIT
32         help
33           If this option is enabled and the file /.init_enable_core
34           exists, then init will call setrlimit() to allow unlimited
35           core file sizes.  If this option is disabled, processes
36           will not generate any core files.
37
38 config CONFIG_FEATURE_EXTRA_QUIET
39         bool "  Should init be _extra_ quiet on boot?"
40         default y
41         depends on CONFIG_INIT
42         help
43           Prevent init from logging some messages to the console
44           during boot.
45
46 config CONFIG_HALT
47         bool "halt"
48         default y
49         help
50           Stop all processes and halt the system.
51
52 config CONFIG_POWEROFF
53         bool "poweroff"
54         default y
55         help
56           Stop all processes and (try to) power off the system.
57
58 config CONFIG_REBOOT
59         bool "reboot"
60         default y
61         help
62           Stop all processes and reboot the system.
63
64 config CONFIG_MINIT
65         bool "minit"
66         default n
67         depends on ! CONFIG_INIT
68         help
69           Minimal init, based on minit v0.9.1.  This is a simple
70           init replacement that handles starting/stopping services,
71           and service dependencies.  See http://www.fefe.de/minit/
72           for additional information.
73
74 config CONFIG_PIDFILEHACK
75         bool "pidfilehack"
76         default y
77         depends on CONFIG_MINIT
78         help
79           pidfilehack is used by minit to run servers.
80
81 config CONFIG_MSVC
82         bool "msvc"
83         default y
84         depends on CONFIG_MINIT
85         help
86           msvc is used to start and stop processes controlled by minit
87
88 config CONFIG_MESG
89         bool "mesg"
90         default y
91         help
92           Mesg controls access to your terminal by others.  It is typically
93           used to allow or disallow other users to write to your terminal
94
95 endmenu
96