nbd's makefile/menuconfig rewrite
[openwrt/svn-archive/archive.git] / openwrt / package / busybox / config / 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 BUSYBOX_CONFIG_INIT
9 bool "init"
10 default y
11 help
12 init is the first program run when the system boots.
13
14 config BUSYBOX_CONFIG_FEATURE_USE_INITTAB
15 bool " Support reading an inittab file?"
16 default y
17 depends on BUSYBOX_CONFIG_INIT
18 help
19 Allow init to read an inittab file when the system boot.
20
21 config BUSYBOX_CONFIG_FEATURE_INITRD
22 bool " Support running init from within an initrd?"
23 default n
24 depends on BUSYBOX_CONFIG_INIT
25 help
26 Allow init to be called from an initrd as linuxrc.
27
28 config BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS
29 bool " Support dumping core for child processes (debugging only)?"
30 default n
31 depends on BUSYBOX_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 BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET
39 bool " Should init be _extra_ quiet on boot?"
40 default n
41 depends on BUSYBOX_CONFIG_INIT
42 help
43 Prevent init from logging some messages to the console
44 during boot.
45
46 config BUSYBOX_CONFIG_HALT
47 bool "halt"
48 default n
49 help
50 Stop all processes and halt the system.
51
52 config BUSYBOX_CONFIG_POWEROFF
53 bool "poweroff"
54 default n
55 help
56 Stop all processes and (try to) power off the system.
57
58 config BUSYBOX_CONFIG_REBOOT
59 bool "reboot"
60 default y
61 help
62 Stop all processes and reboot the system.
63
64 config BUSYBOX_CONFIG_MESG
65 bool "mesg"
66 default y
67 help
68 Mesg controls access to your terminal by others. It is typically
69 used to allow or disallow other users to write to your terminal
70
71 endmenu
72