Config.src 4.9 KB

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