blob: 0316399e6406ad0390a49b06aa6b50f19a0e41d5 [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
Eric Andersen65e20a32003-07-05 07:52:35 +000012 init is the first program run when the system boots.
Eric Andersenc9f20d92002-12-05 08:41:41 +000013
14config CONFIG_FEATURE_USE_INITTAB
15 bool " Support reading an inittab file?"
16 default y
17 depends on CONFIG_INIT
18 help
Eric Andersen65e20a32003-07-05 07:52:35 +000019 Allow init to read an inittab file when the system boot.
Eric Andersenc9f20d92002-12-05 08:41:41 +000020
21config CONFIG_FEATURE_INITRD
22 bool " Support running init from within an initrd?"
23 default y
24 depends on CONFIG_INIT
25 help
Eric Andersen65e20a32003-07-05 07:52:35 +000026 Allow init to be called from an initrd as linuxrc.
Eric Andersenc9f20d92002-12-05 08:41:41 +000027
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
Glenn L McGrath1e11c342003-05-11 14:52:39 +000064config CONFIG_MINIT
65 bool "minit"
66 default n
67 help
68 Minimal init, based on minit v0.9.1
69
70config CONFIG_PIDFILEHACK
71 bool "pidfilehack"
72 default y
73 depends on CONFIG_MINIT
74 help
75 pidfilehack is used by minit to run servers.
76
77config CONFIG_MSVC
78 bool "msvc"
79 default y
80 depends on CONFIG_MINIT
81 help
82 msvc is used to start and stop processes controlled by minit
83
Eric Andersenc9f20d92002-12-05 08:41:41 +000084# Should start-stop-daemon be moved under debianutils?
85config CONFIG_START_STOP_DAEMON
86 bool "start-stop-daemon"
87 default y
88 help
89 Please submit a patch to add help text for this item.
90
91config CONFIG_MESG
92 bool "mesg"
93 default y
94 help
95 Please submit a patch to add help text for this item.
96
97endmenu
98