remove 1 exported
[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 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_INIT_SCTTY
39         bool "  Support running commands with a controlling-tty?"
40         default n
41         depends on CONFIG_INIT
42         help
43           If this option is enabled a command starting with hyphen (-)
44           is run in its own session (setsid(2)) and possibly with a
45           controlling tty (TIOCSCTTY).  This is not the traditional init
46           behavour, but is often what you want in an embedded system where
47           the console is only accessed during development or for maintenance.
48
49 config CONFIG_FEATURE_EXTRA_QUIET
50         bool "  Should init be _extra_ quiet on boot?"
51         default y
52         depends on CONFIG_INIT
53         help
54           Prevent init from logging some messages to the console
55           during boot.
56
57 config CONFIG_HALT
58         bool "halt"
59         default y
60         help
61           Stop all processes and halt the system.
62
63 config CONFIG_POWEROFF
64         bool "poweroff"
65         default y
66         help
67           Stop all processes and (try to) power off the system.
68
69 config CONFIG_REBOOT
70         bool "reboot"
71         default y
72         help
73           Stop all processes and reboot the system.
74
75 config CONFIG_MESG
76         bool "mesg"
77         default y
78         help
79           Mesg controls access to your terminal by others.  It is typically
80           used to allow or disallow other users to write to your terminal
81
82 endmenu
83