Config.in 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "Init Utilities"
  7. config BUSYBOX_CONFIG_BOOTCHARTD
  8. bool "bootchartd"
  9. default BUSYBOX_DEFAULT_BOOTCHARTD
  10. help
  11. bootchartd is commonly used to profile the boot process
  12. for the purpose of speeding it up. In this case, it is started
  13. by the kernel as the init process. This is configured by adding
  14. the init=/sbin/bootchartd option to the kernel command line.
  15. It can also be used to monitor the resource usage of a specific
  16. application or the running system in general. In this case,
  17. bootchartd is started interactively by running bootchartd start
  18. and stopped using bootchartd stop.
  19. config BUSYBOX_CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER
  20. bool "Compatible, bloated header"
  21. default BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_BLOATED_HEADER
  22. depends on BUSYBOX_CONFIG_BOOTCHARTD
  23. help
  24. Create extended header file compatible with "big" bootchartd.
  25. "Big" bootchartd is a shell script and it dumps some
  26. "convenient" info int the header, such as:
  27. title = Boot chart for `hostname` (`date`)
  28. system.uname = `uname -srvm`
  29. system.release = `cat /etc/DISTRO-release`
  30. system.cpu = `grep '^model name' /proc/cpuinfo | head -1` ($cpucount)
  31. system.kernel.options = `cat /proc/cmdline`
  32. This data is not mandatory for bootchart graph generation,
  33. and is considered bloat. Nevertheless, this option
  34. makes bootchartd applet to dump a subset of it.
  35. config BUSYBOX_CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE
  36. bool "Support bootchartd.conf"
  37. default BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_CONFIG_FILE
  38. depends on BUSYBOX_CONFIG_BOOTCHARTD
  39. help
  40. Enable reading and parsing of $PWD/bootchartd.conf
  41. and /etc/bootchartd.conf files.
  42. config BUSYBOX_CONFIG_HALT
  43. bool "halt"
  44. default BUSYBOX_DEFAULT_HALT
  45. help
  46. Stop all processes and halt the system.
  47. config BUSYBOX_CONFIG_POWEROFF
  48. bool "poweroff"
  49. default BUSYBOX_DEFAULT_POWEROFF
  50. help
  51. Stop all processes and power off the system.
  52. config BUSYBOX_CONFIG_REBOOT
  53. bool "reboot"
  54. default BUSYBOX_DEFAULT_REBOOT
  55. help
  56. Stop all processes and reboot the system.
  57. config BUSYBOX_CONFIG_FEATURE_CALL_TELINIT
  58. bool "Call telinit on shutdown and reboot"
  59. default BUSYBOX_DEFAULT_FEATURE_CALL_TELINIT
  60. depends on (BUSYBOX_CONFIG_HALT || BUSYBOX_CONFIG_POWEROFF || BUSYBOX_CONFIG_REBOOT) && !BUSYBOX_CONFIG_INIT
  61. help
  62. Call an external program (normally telinit) to facilitate
  63. a switch to a proper runlevel.
  64. This option is only available if you selected halt and friends,
  65. but did not select init.
  66. config BUSYBOX_CONFIG_TELINIT_PATH
  67. string "Path to telinit executable"
  68. default BUSYBOX_DEFAULT_TELINIT_PATH
  69. depends on BUSYBOX_CONFIG_FEATURE_CALL_TELINIT
  70. help
  71. When busybox halt and friends have to call external telinit
  72. to facilitate proper shutdown, this path is to be used when
  73. locating telinit executable.
  74. config BUSYBOX_CONFIG_INIT
  75. bool "init"
  76. default BUSYBOX_DEFAULT_INIT
  77. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  78. help
  79. init is the first program run when the system boots.
  80. config BUSYBOX_CONFIG_LINUXRC
  81. bool "Support running init from within an initrd (not initramfs)"
  82. default BUSYBOX_DEFAULT_LINUXRC
  83. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  84. help
  85. Legacy support for running init under the old-style initrd. Allows
  86. the name linuxrc to act as init, and it doesn't assume init is PID 1.
  87. This does not apply to initramfs, which runs /init as PID 1 and
  88. requires no special support.
  89. config BUSYBOX_CONFIG_FEATURE_USE_INITTAB
  90. bool "Support reading an inittab file"
  91. default BUSYBOX_DEFAULT_FEATURE_USE_INITTAB
  92. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  93. help
  94. Allow init to read an inittab file when the system boot.
  95. config BUSYBOX_CONFIG_FEATURE_KILL_REMOVED
  96. bool "Support killing processes that have been removed from inittab"
  97. default BUSYBOX_DEFAULT_FEATURE_KILL_REMOVED
  98. depends on BUSYBOX_CONFIG_FEATURE_USE_INITTAB
  99. help
  100. When respawn entries are removed from inittab and a SIGHUP is
  101. sent to init, this option will make init kill the processes
  102. that have been removed.
  103. config BUSYBOX_CONFIG_FEATURE_KILL_DELAY
  104. int "How long to wait between TERM and KILL (0 - send TERM only)" if FEATURE_KILL_REMOVED
  105. range 0 1024
  106. default BUSYBOX_DEFAULT_FEATURE_KILL_DELAY
  107. depends on BUSYBOX_CONFIG_FEATURE_KILL_REMOVED
  108. help
  109. With nonzero setting, init sends TERM, forks, child waits N
  110. seconds, sends KILL and exits. Setting it too high is unwise
  111. (child will hang around for too long and could actually kill
  112. the wrong process!)
  113. config BUSYBOX_CONFIG_FEATURE_INIT_SCTTY
  114. bool "Run commands with leading dash with controlling tty"
  115. default BUSYBOX_DEFAULT_FEATURE_INIT_SCTTY
  116. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  117. help
  118. If this option is enabled, init will try to give a controlling
  119. tty to any command which has leading hyphen (often it's "-/bin/sh").
  120. More precisely, init will do "ioctl(STDIN_FILENO, TIOCSCTTY, 0)".
  121. If device attached to STDIN_FILENO can be a ctty but is not yet
  122. a ctty for other session, it will become this process' ctty.
  123. This is not the traditional init behavour, but is often what you want
  124. in an embedded system where the console is only accessed during
  125. development or for maintenance.
  126. NB: using cttyhack applet may work better.
  127. config BUSYBOX_CONFIG_FEATURE_INIT_SYSLOG
  128. bool "Enable init to write to syslog"
  129. default BUSYBOX_DEFAULT_FEATURE_INIT_SYSLOG
  130. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  131. config BUSYBOX_CONFIG_FEATURE_EXTRA_QUIET
  132. bool "Be _extra_ quiet on boot"
  133. default BUSYBOX_DEFAULT_FEATURE_EXTRA_QUIET
  134. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  135. help
  136. Prevent init from logging some messages to the console during boot.
  137. config BUSYBOX_CONFIG_FEATURE_INIT_COREDUMPS
  138. bool "Support dumping core for child processes (debugging only)"
  139. default BUSYBOX_DEFAULT_FEATURE_INIT_COREDUMPS # not Y because this is a debug option
  140. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  141. help
  142. If this option is enabled and the file /.init_enable_core
  143. exists, then init will call setrlimit() to allow unlimited
  144. core file sizes. If this option is disabled, processes
  145. will not generate any core files.
  146. config BUSYBOX_CONFIG_INIT_TERMINAL_TYPE
  147. string "Initial terminal type"
  148. default BUSYBOX_DEFAULT_INIT_TERMINAL_TYPE
  149. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  150. help
  151. This is the initial value set by init for the TERM environment
  152. variable. This variable is used by programs which make use of
  153. extended terminal capabilities.
  154. Note that on Linux, init attempts to detect serial terminal and
  155. sets TERM to "vt102" if one is found.
  156. config BUSYBOX_CONFIG_FEATURE_INIT_MODIFY_CMDLINE
  157. bool "Modify the command-line to \"init\""
  158. default BUSYBOX_DEFAULT_FEATURE_INIT_MODIFY_CMDLINE
  159. depends on BUSYBOX_CONFIG_INIT || BUSYBOX_CONFIG_LINUXRC
  160. help
  161. When launched as PID 1 and after parsing its arguments, init
  162. wipes all the arguments but argv[0] and rewrites argv[0] to
  163. contain only "init", so that its command-line appears solely as
  164. "init" in tools such as ps.
  165. If this option is set to Y, init will keep its original behavior,
  166. otherwise, all the arguments including argv[0] will be preserved,
  167. be they parsed or ignored by init.
  168. The original command-line used to launch init can then be
  169. retrieved in /proc/1/cmdline on Linux, for example.
  170. config BUSYBOX_CONFIG_MESG
  171. bool "mesg"
  172. default BUSYBOX_DEFAULT_MESG
  173. help
  174. Mesg controls access to your terminal by others. It is typically
  175. used to allow or disallow other users to write to your terminal
  176. config BUSYBOX_CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP
  177. bool "Enable writing to tty only by group, not by everybody"
  178. default BUSYBOX_DEFAULT_FEATURE_MESG_ENABLE_ONLY_GROUP
  179. depends on BUSYBOX_CONFIG_MESG
  180. help
  181. Usually, ttys are owned by group "tty", and "write" tool is
  182. setgid to this group. This way, "mesg y" only needs to enable
  183. "write by owning group" bit in tty mode.
  184. If you set this option to N, "mesg y" will enable writing
  185. by anybody at all. This is not recommended.
  186. endmenu