Config.in 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Process Utilities"
  6. config BUSYBOX_CONFIG_SMEMCAP
  7. bool "smemcap"
  8. default n
  9. help
  10. smemcap is a tool for capturing process data for smem,
  11. a memory usage statistic tool.
  12. config BUSYBOX_CONFIG_FREE
  13. bool "free"
  14. default y
  15. help
  16. free displays the total amount of free and used physical and swap
  17. memory in the system, as well as the buffers used by the kernel.
  18. The shared memory column should be ignored; it is obsolete.
  19. config BUSYBOX_CONFIG_FUSER
  20. bool "fuser"
  21. default n
  22. help
  23. fuser lists all PIDs (Process IDs) that currently have a given
  24. file open. fuser can also list all PIDs that have a given network
  25. (TCP or UDP) port open.
  26. config BUSYBOX_CONFIG_KILL
  27. bool "kill"
  28. default y
  29. help
  30. The command kill sends the specified signal to the specified
  31. process or process group. If no signal is specified, the TERM
  32. signal is sent.
  33. config BUSYBOX_CONFIG_KILLALL
  34. bool "killall"
  35. default y
  36. depends on BUSYBOX_CONFIG_KILL
  37. help
  38. killall sends a signal to all processes running any of the
  39. specified commands. If no signal name is specified, SIGTERM is
  40. sent.
  41. config BUSYBOX_CONFIG_KILLALL5
  42. bool "killall5"
  43. default n
  44. depends on BUSYBOX_CONFIG_KILL
  45. config BUSYBOX_CONFIG_NMETER
  46. bool "nmeter"
  47. default n
  48. help
  49. Prints selected system stats continuously, one line per update.
  50. config BUSYBOX_CONFIG_PGREP
  51. bool "pgrep"
  52. default y
  53. help
  54. Look for processes by name.
  55. config BUSYBOX_CONFIG_PIDOF
  56. bool "pidof"
  57. default y
  58. help
  59. Pidof finds the process id's (pids) of the named programs. It prints
  60. those id's on the standard output.
  61. config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
  62. bool "Enable argument for single shot (-s)"
  63. default n
  64. depends on BUSYBOX_CONFIG_PIDOF
  65. help
  66. Support argument '-s' for returning only the first pid found.
  67. config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
  68. bool "Enable argument for omitting pids (-o)"
  69. default n
  70. depends on BUSYBOX_CONFIG_PIDOF
  71. help
  72. Support argument '-o' for omitting the given pids in output.
  73. The special pid %PPID can be used to name the parent process
  74. of the pidof, in other words the calling shell or shell script.
  75. config BUSYBOX_CONFIG_PKILL
  76. bool "pkill"
  77. default y
  78. help
  79. Send signals to processes by name.
  80. config BUSYBOX_CONFIG_PS
  81. bool "ps"
  82. default y
  83. help
  84. ps gives a snapshot of the current processes.
  85. config BUSYBOX_CONFIG_FEATURE_PS_WIDE
  86. bool "Enable wide output option (-w)"
  87. default n
  88. depends on BUSYBOX_CONFIG_PS
  89. help
  90. Support argument 'w' for wide output.
  91. If given once, 132 chars are printed, and if given more
  92. than once, the length is unlimited.
  93. config BUSYBOX_CONFIG_FEATURE_PS_TIME
  94. bool "Enable time and elapsed time output"
  95. default n
  96. depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
  97. help
  98. Support -o time and -o etime output specifiers.
  99. config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
  100. bool "Enable additional ps columns"
  101. default n
  102. depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
  103. help
  104. Support -o rgroup, -o ruser, -o nice output specifiers.
  105. config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
  106. bool "Support Linux prior to 2.4.0 and non-ELF systems"
  107. default n
  108. depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
  109. help
  110. Include support for measuring HZ on old kernels and non-ELF systems
  111. (if you are on Linux 2.4.0+ and use ELF, you don't need this)
  112. config BUSYBOX_CONFIG_RENICE
  113. bool "renice"
  114. default n
  115. help
  116. Renice alters the scheduling priority of one or more running
  117. processes.
  118. config BUSYBOX_CONFIG_BB_SYSCTL
  119. bool "sysctl"
  120. default y
  121. help
  122. Configure kernel parameters at runtime.
  123. config BUSYBOX_CONFIG_TOP
  124. bool "top"
  125. default y
  126. help
  127. The top program provides a dynamic real-time view of a running
  128. system.
  129. config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  130. bool "Show CPU per-process usage percentage"
  131. default y
  132. depends on BUSYBOX_CONFIG_TOP
  133. help
  134. Make top display CPU usage for each process.
  135. This adds about 2k.
  136. config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  137. bool "Show CPU global usage percentage"
  138. default y
  139. depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  140. help
  141. Makes top display "CPU: NN% usr NN% sys..." line.
  142. This adds about 0.5k.
  143. config BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU
  144. bool "SMP CPU usage display ('c' key)"
  145. default n
  146. depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  147. help
  148. Allow 'c' key to switch between individual/cumulative CPU stats
  149. This adds about 0.5k.
  150. config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
  151. bool "Show 1/10th of a percent in CPU/mem statistics"
  152. default n
  153. depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  154. help
  155. Show 1/10th of a percent in CPU/mem statistics.
  156. This adds about 0.3k.
  157. config BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS
  158. bool "Show CPU process runs on ('j' field)"
  159. default n
  160. depends on BUSYBOX_CONFIG_TOP
  161. help
  162. Show CPU where process was last found running on.
  163. This is the 'j' field.
  164. config BUSYBOX_CONFIG_FEATURE_TOPMEM
  165. bool "Topmem command ('s' key)"
  166. default n
  167. depends on BUSYBOX_CONFIG_TOP
  168. help
  169. Enable 's' in top (gives lots of memory info).
  170. config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
  171. bool "Support for showing threads in ps/top"
  172. default n
  173. depends on BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_TOP
  174. help
  175. Enables ps -T option and 'h' command in top
  176. config BUSYBOX_CONFIG_UPTIME
  177. bool "uptime"
  178. default y
  179. help
  180. uptime gives a one line display of the current time, how long
  181. the system has been running, how many users are currently logged
  182. on, and the system load averages for the past 1, 5, and 15 minutes.
  183. config BUSYBOX_CONFIG_WATCH
  184. bool "watch"
  185. default n
  186. help
  187. watch is used to execute a program periodically, showing
  188. output to the screen.
  189. endmenu