diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-27 04:35:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-27 04:35:04 +0000 |
commit | 8d42f86b146871ae4c4cafd3801a85f381249a14 (patch) | |
tree | b963999fc54eddb65f1929b894f868e24851fc9c /init/Config.in | |
download | busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.gz busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.bz2 busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.zip |
Correcting branch name to be like previous ones
Diffstat (limited to 'init/Config.in')
-rw-r--r-- | init/Config.in | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/init/Config.in b/init/Config.in new file mode 100644 index 000000000..c0ad5263d --- /dev/null +++ b/init/Config.in | |||
@@ -0,0 +1,84 @@ | |||
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 INIT | ||
9 | bool "init" | ||
10 | default n | ||
11 | select FEATURE_SYSLOG | ||
12 | help | ||
13 | init is the first program run when the system boots. | ||
14 | |||
15 | config DEBUG_INIT | ||
16 | bool "debugging aid" | ||
17 | default n | ||
18 | depends on INIT | ||
19 | help | ||
20 | Turn this on to disable all the dangerous | ||
21 | rebooting stuff when debugging. | ||
22 | |||
23 | config FEATURE_USE_INITTAB | ||
24 | bool "Support reading an inittab file" | ||
25 | default y | ||
26 | depends on INIT | ||
27 | help | ||
28 | Allow init to read an inittab file when the system boot. | ||
29 | |||
30 | config FEATURE_INIT_SCTTY | ||
31 | bool "Support running commands with a controlling-tty" | ||
32 | default n | ||
33 | depends on INIT | ||
34 | help | ||
35 | If this option is enabled a command starting with hyphen (-) | ||
36 | is run in its own session (setsid(2)) and possibly with a | ||
37 | controlling tty (TIOCSCTTY). This is not the traditional init | ||
38 | behavour, but is often what you want in an embedded system where | ||
39 | the console is only accessed during development or for maintenance. | ||
40 | |||
41 | config FEATURE_EXTRA_QUIET | ||
42 | bool "Be _extra_ quiet on boot" | ||
43 | default y | ||
44 | depends on INIT | ||
45 | help | ||
46 | Prevent init from logging some messages to the console during boot. | ||
47 | |||
48 | config FEATURE_INIT_COREDUMPS | ||
49 | bool "Support dumping core for child processes (debugging only)" | ||
50 | default n | ||
51 | depends on INIT | ||
52 | help | ||
53 | If this option is enabled and the file /.init_enable_core | ||
54 | exists, then init will call setrlimit() to allow unlimited | ||
55 | core file sizes. If this option is disabled, processes | ||
56 | will not generate any core files. | ||
57 | |||
58 | |||
59 | |||
60 | config FEATURE_INITRD | ||
61 | bool "Support running init from within an initrd (not initramfs)" | ||
62 | default y | ||
63 | depends on INIT | ||
64 | help | ||
65 | Legacy support for running init under the old-style initrd. Allows | ||
66 | the name linuxrc to act as init, and it doesn't assume init is PID 1. | ||
67 | |||
68 | This does not apply to initramfs, which runs /init as PID 1 and | ||
69 | requires no special support. | ||
70 | |||
71 | config HALT | ||
72 | bool "poweroff, halt, and reboot" | ||
73 | default y | ||
74 | help | ||
75 | Stop all processes and either halt, reboot, or power off the system. | ||
76 | |||
77 | config MESG | ||
78 | bool "mesg" | ||
79 | default y | ||
80 | help | ||
81 | Mesg controls access to your terminal by others. It is typically | ||
82 | used to allow or disallow other users to write to your terminal | ||
83 | |||
84 | endmenu | ||