blob: 90173c552dcf3b5d2c8436a4122bfd9d0b34ebfa [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Init Utilities"
7
8config CONFIG_INIT
9 bool "init"
10 default n
11 help
12 Please submit a patch to add help text for this item.
13
14config CONFIG_FEATURE_USE_INITTAB
15 bool " Support reading an inittab file?"
16 default y
17 depends on CONFIG_INIT
18 help
19 Please submit a patch to add help text for this item.
20
21config CONFIG_FEATURE_INITRD
22 bool " Support running init from within an initrd?"
23 default y
24 depends on CONFIG_INIT
25 help
26 Please submit a patch to add help text for this item.
27
28config CONFIG_FEATURE_INIT_COREDUMPS
29 bool " Support dumping core for child processes (debugging only)?"
30 default y
31 depends on CONFIG_INIT
32 help
33 Please submit a patch to add help text for this item.
34
35config CONFIG_FEATURE_EXTRA_QUIET
36 bool " Should init be _extra_ quiet on boot?"
37 default y
38 depends on CONFIG_INIT
39 help
40 Please submit a patch to add help text for this item.
41
42# Some apps that are meaningless without BusyBox running as init
43config CONFIG_HALT
44 bool "halt"
45 default y
46 depends on CONFIG_INIT
47 help
48 Please submit a patch to add help text for this item.
49
50config CONFIG_POWEROFF
51 bool "poweroff"
52 default y
53 depends on CONFIG_INIT
54 help
55 Please submit a patch to add help text for this item.
56
57config CONFIG_REBOOT
58 bool "reboot"
59 default y
60 depends on CONFIG_INIT
61 help
62 Please submit a patch to add help text for this item.
63
64# Should start-stop-daemon be moved under debianutils?
65config CONFIG_START_STOP_DAEMON
66 bool "start-stop-daemon"
67 default y
68 help
69 Please submit a patch to add help text for this item.
70
71config CONFIG_MESG
72 bool "mesg"
73 default y
74 help
75 Please submit a patch to add help text for this item.
76
77endmenu
78