Config.in 7.3 KB

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