Config.in 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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 docs/Kconfig-language.txt.
  5. #
  6. menu "Process Utilities"
  7. config BUSYBOX_FREE
  8. bool "free (3.1 kb)"
  9. default y
  10. help
  11. free displays the total amount of free and used physical and swap
  12. memory in the system, as well as the buffers used by the kernel.
  13. The shared memory column should be ignored; it is obsolete.
  14. config BUSYBOX_FUSER
  15. bool "fuser (7 kb)"
  16. default y
  17. help
  18. fuser lists all PIDs (Process IDs) that currently have a given
  19. file open. fuser can also list all PIDs that have a given network
  20. (TCP or UDP) port open.
  21. config BUSYBOX_IOSTAT
  22. bool "iostat (7.6 kb)"
  23. default y
  24. help
  25. Report CPU and I/O statistics
  26. config BUSYBOX_KILL
  27. bool "kill (3.1 kb)"
  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_KILLALL
  34. bool "killall (5.6 kb)"
  35. default y
  36. help
  37. killall sends a signal to all processes running any of the
  38. specified commands. If no signal name is specified, SIGTERM is
  39. sent.
  40. config BUSYBOX_KILLALL5
  41. bool "killall5 (5.3 kb)"
  42. default y
  43. help
  44. The SystemV killall command. killall5 sends a signal
  45. to all processes except kernel threads and the processes
  46. in its own session, so it won't kill the shell that is running
  47. the script it was called from.
  48. config BUSYBOX_LSOF
  49. bool "lsof (3.4 kb)"
  50. default y
  51. help
  52. Show open files in the format of:
  53. PID <TAB> /path/to/executable <TAB> /path/to/opened/file
  54. config BUSYBOX_MPSTAT
  55. bool "mpstat (9.8 kb)"
  56. default y
  57. help
  58. Per-processor statistics
  59. config BUSYBOX_NMETER
  60. bool "nmeter (11 kb)"
  61. default y
  62. help
  63. Prints selected system stats continuously, one line per update.
  64. config BUSYBOX_PGREP
  65. bool "pgrep (6.5 kb)"
  66. default y
  67. help
  68. Look for processes by name.
  69. config BUSYBOX_PKILL
  70. bool "pkill (7.5 kb)"
  71. default y
  72. help
  73. Send signals to processes by name.
  74. config BUSYBOX_PIDOF
  75. bool "pidof (6.3 kb)"
  76. default y
  77. help
  78. Pidof finds the process id's (pids) of the named programs. It prints
  79. those id's on the standard output.
  80. config BUSYBOX_FEATURE_PIDOF_SINGLE
  81. bool "Enable single shot (-s)"
  82. default y
  83. depends on BUSYBOX_PIDOF
  84. help
  85. Support '-s' for returning only the first pid found.
  86. config BUSYBOX_FEATURE_PIDOF_OMIT
  87. bool "Enable omitting pids (-o PID)"
  88. default y
  89. depends on BUSYBOX_PIDOF
  90. help
  91. Support '-o PID' for omitting the given pid(s) in output.
  92. The special pid %PPID can be used to name the parent process
  93. of the pidof, in other words the calling shell or shell script.
  94. config BUSYBOX_PMAP
  95. bool "pmap (6 kb)"
  96. default y
  97. help
  98. Display processes' memory mappings.
  99. config BUSYBOX_POWERTOP
  100. bool "powertop (9.6 kb)"
  101. default y
  102. help
  103. Analyze power consumption on Intel-based laptops
  104. config BUSYBOX_FEATURE_POWERTOP_INTERACTIVE
  105. bool "Accept keyboard commands"
  106. default y
  107. depends on BUSYBOX_POWERTOP
  108. help
  109. Without this, powertop will only refresh display every 10 seconds.
  110. No keyboard commands will work, only ^C to terminate.
  111. config BUSYBOX_PS
  112. bool "ps (11 kb)"
  113. default y
  114. help
  115. ps gives a snapshot of the current processes.
  116. config BUSYBOX_FEATURE_PS_WIDE
  117. bool "Enable wide output (-w)"
  118. default y
  119. depends on (BUSYBOX_PS || BUSYBOX_MINIPS) && !BUSYBOX_DESKTOP
  120. help
  121. Support argument 'w' for wide output.
  122. If given once, 132 chars are printed, and if given more
  123. than once, the length is unlimited.
  124. config BUSYBOX_FEATURE_PS_LONG
  125. bool "Enable long output (-l)"
  126. default y
  127. depends on (BUSYBOX_PS || BUSYBOX_MINIPS) && !BUSYBOX_DESKTOP
  128. help
  129. Support argument 'l' for long output.
  130. Adds fields PPID, RSS, START, TIME & TTY
  131. config BUSYBOX_FEATURE_PS_TIME
  132. bool "Enable -o time and -o etime specifiers"
  133. default y
  134. depends on (BUSYBOX_PS || BUSYBOX_MINIPS) && BUSYBOX_DESKTOP
  135. config BUSYBOX_FEATURE_PS_UNUSUAL_SYSTEMS
  136. bool "Support Linux prior to 2.4.0 and non-ELF systems"
  137. default n
  138. depends on BUSYBOX_FEATURE_PS_TIME
  139. help
  140. Include support for measuring HZ on old kernels and non-ELF systems
  141. (if you are on Linux 2.4.0+ and use ELF, you don't need this)
  142. config BUSYBOX_FEATURE_PS_ADDITIONAL_COLUMNS
  143. bool "Enable -o rgroup, -o ruser, -o nice specifiers"
  144. default y
  145. depends on (BUSYBOX_PS || BUSYBOX_MINIPS) && BUSYBOX_DESKTOP
  146. config BUSYBOX_PSTREE
  147. bool "pstree (9.3 kb)"
  148. default y
  149. help
  150. Display a tree of processes.
  151. config BUSYBOX_PWDX
  152. bool "pwdx (3.7 kb)"
  153. default y
  154. help
  155. Report current working directory of a process
  156. config BUSYBOX_SMEMCAP
  157. bool "smemcap (2.5 kb)"
  158. default y
  159. help
  160. smemcap is a tool for capturing process data for smem,
  161. a memory usage statistic tool.
  162. config BUSYBOX_BB_SYSCTL
  163. bool "sysctl (7.4 kb)"
  164. default y
  165. help
  166. Configure kernel parameters at runtime.
  167. config BUSYBOX_TOP
  168. bool "top (18 kb)"
  169. default y
  170. help
  171. The top program provides a dynamic real-time view of a running
  172. system.
  173. config BUSYBOX_FEATURE_TOP_INTERACTIVE
  174. bool "Accept keyboard commands"
  175. default y
  176. depends on BUSYBOX_TOP
  177. help
  178. Without this, top will only refresh display every 5 seconds.
  179. No keyboard commands will work, only ^C to terminate.
  180. config BUSYBOX_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  181. bool "Show CPU per-process usage percentage"
  182. default y
  183. depends on BUSYBOX_TOP
  184. help
  185. Make top display CPU usage for each process.
  186. This adds about 2k.
  187. config BUSYBOX_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  188. bool "Show CPU global usage percentage"
  189. default y
  190. depends on BUSYBOX_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  191. help
  192. Makes top display "CPU: NN% usr NN% sys..." line.
  193. This adds about 0.5k.
  194. config BUSYBOX_FEATURE_TOP_SMP_CPU
  195. bool "SMP CPU usage display ('c' key)"
  196. default y
  197. depends on BUSYBOX_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  198. help
  199. Allow 'c' key to switch between individual/cumulative CPU stats
  200. This adds about 0.5k.
  201. config BUSYBOX_FEATURE_TOP_DECIMALS
  202. bool "Show 1/10th of a percent in CPU/mem statistics"
  203. default y
  204. depends on BUSYBOX_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  205. help
  206. Show 1/10th of a percent in CPU/mem statistics.
  207. This adds about 0.3k.
  208. config BUSYBOX_FEATURE_TOP_SMP_PROCESS
  209. bool "Show CPU process runs on ('j' field)"
  210. default y
  211. depends on BUSYBOX_TOP
  212. help
  213. Show CPU where process was last found running on.
  214. This is the 'j' field.
  215. config BUSYBOX_FEATURE_TOPMEM
  216. bool "Topmem command ('s' key)"
  217. default y
  218. depends on BUSYBOX_TOP
  219. help
  220. Enable 's' in top (gives lots of memory info).
  221. config BUSYBOX_UPTIME
  222. bool "uptime (3.7 kb)"
  223. default y
  224. help
  225. uptime gives a one line display of the current time, how long
  226. the system has been running, how many users are currently logged
  227. on, and the system load averages for the past 1, 5, and 15 minutes.
  228. config BUSYBOX_FEATURE_UPTIME_UTMP_SUPPORT
  229. bool "Show the number of users"
  230. default y
  231. depends on BUSYBOX_UPTIME && BUSYBOX_FEATURE_UTMP
  232. help
  233. Display the number of users currently logged on.
  234. config BUSYBOX_WATCH
  235. bool "watch (4.4 kb)"
  236. default y
  237. help
  238. watch is used to execute a program periodically, showing
  239. output to the screen.
  240. config BUSYBOX_FEATURE_SHOW_THREADS
  241. bool "Support thread display in ps/pstree/top"
  242. default y
  243. depends on BUSYBOX_PS || BUSYBOX_TOP || BUSYBOX_PSTREE
  244. help
  245. Enables the ps -T option, showing of threads in pstree,
  246. and 'h' command in top.
  247. endmenu