blob: 521f8fe1d4dcfd533702bff716199d63f94a8bcb [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)?"
Eric Andersen02462222003-07-22 09:41:39 +000030 default n
Eric Andersenc9f20d92002-12-05 08:41:41 +000031 depends on CONFIG_INIT
32 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000033 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.
Eric Andersenc9f20d92002-12-05 08:41:41 +000037
Mike Frysinger95ef1652005-07-06 04:39:08 +000038config CONFIG_FEATURE_INIT_SWAPON
39 bool " Should init run swapon if short on memory?"
40 default y
41 depends on CONFIG_INIT
42 help
43 If the system has less than one megabyte of total memory, init
44 will run '/sbin/swapon -a' to add swap memory.
45
Eric Andersenc9f20d92002-12-05 08:41:41 +000046config CONFIG_FEATURE_EXTRA_QUIET
47 bool " Should init be _extra_ quiet on boot?"
48 default y
49 depends on CONFIG_INIT
50 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000051 Prevent init from logging some messages to the console
52 during boot.
Eric Andersenc9f20d92002-12-05 08:41:41 +000053
Eric Andersenc9f20d92002-12-05 08:41:41 +000054config CONFIG_HALT
55 bool "halt"
56 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000057 help
Eric Andersen02462222003-07-22 09:41:39 +000058 Stop all processes and halt the system.
Eric Andersenc9f20d92002-12-05 08:41:41 +000059
60config CONFIG_POWEROFF
61 bool "poweroff"
62 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000063 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000064 Stop all processes and (try to) power off the system.
Eric Andersenc9f20d92002-12-05 08:41:41 +000065
66config CONFIG_REBOOT
67 bool "reboot"
68 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000069 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000070 Stop all processes and reboot the system.
Eric Andersenc9f20d92002-12-05 08:41:41 +000071
Eric Andersenc9f20d92002-12-05 08:41:41 +000072config CONFIG_MESG
73 bool "mesg"
74 default y
75 help
Eric Andersen88c916b2003-10-22 09:58:56 +000076 Mesg controls access to your terminal by others. It is typically
77 used to allow or disallow other users to write to your terminal
Eric Andersenc9f20d92002-12-05 08:41:41 +000078
79endmenu
80