Config.in 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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_CONFIG_FREE
  8. bool "free (3.1 kb)"
  9. default BUSYBOX_DEFAULT_FREE
  10. select BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FUSER
  16. bool "fuser (7 kb)"
  17. default BUSYBOX_DEFAULT_FUSER
  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 BUSYBOX_CONFIG_IOSTAT
  23. bool "iostat (7.6 kb)"
  24. default BUSYBOX_DEFAULT_IOSTAT
  25. help
  26. Report CPU and I/O statistics
  27. config BUSYBOX_CONFIG_KILL
  28. bool "kill (3.1 kb)"
  29. default BUSYBOX_DEFAULT_KILL
  30. help
  31. The command kill sends the specified signal to the specified
  32. process or process group. If no signal is specified, the TERM
  33. signal is sent.
  34. config BUSYBOX_CONFIG_KILLALL
  35. bool "killall (5.6 kb)"
  36. default BUSYBOX_DEFAULT_KILLALL
  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 (5.3 kb)"
  43. default BUSYBOX_DEFAULT_KILLALL5
  44. help
  45. The SystemV killall command. killall5 sends a signal
  46. to all processes except kernel threads and the processes
  47. in its own session, so it won't kill the shell that is running
  48. the script it was called from.
  49. config BUSYBOX_CONFIG_LSOF
  50. bool "lsof (3.4 kb)"
  51. default BUSYBOX_DEFAULT_LSOF
  52. help
  53. Show open files in the format of:
  54. PID <TAB> /path/to/executable <TAB> /path/to/opened/file
  55. config BUSYBOX_CONFIG_MPSTAT
  56. bool "mpstat (9.8 kb)"
  57. default BUSYBOX_DEFAULT_MPSTAT
  58. help
  59. Per-processor statistics
  60. config BUSYBOX_CONFIG_NMETER
  61. bool "nmeter (11 kb)"
  62. default BUSYBOX_DEFAULT_NMETER
  63. help
  64. Prints selected system stats continuously, one line per update.
  65. config BUSYBOX_CONFIG_PGREP
  66. bool "pgrep (6.5 kb)"
  67. default BUSYBOX_DEFAULT_PGREP
  68. help
  69. Look for processes by name.
  70. config BUSYBOX_CONFIG_PKILL
  71. bool "pkill (7.5 kb)"
  72. default BUSYBOX_DEFAULT_PKILL
  73. help
  74. Send signals to processes by name.
  75. config BUSYBOX_CONFIG_PIDOF
  76. bool "pidof (6.3 kb)"
  77. default BUSYBOX_DEFAULT_PIDOF
  78. help
  79. Pidof finds the process id's (pids) of the named programs. It prints
  80. those id's on the standard output.
  81. config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
  82. bool "Enable single shot (-s)"
  83. default BUSYBOX_DEFAULT_FEATURE_PIDOF_SINGLE
  84. depends on BUSYBOX_CONFIG_PIDOF
  85. help
  86. Support '-s' for returning only the first pid found.
  87. config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
  88. bool "Enable omitting pids (-o PID)"
  89. default BUSYBOX_DEFAULT_FEATURE_PIDOF_OMIT
  90. depends on BUSYBOX_CONFIG_PIDOF
  91. help
  92. Support '-o PID' for omitting the given pid(s) in output.
  93. The special pid %PPID can be used to name the parent process
  94. of the pidof, in other words the calling shell or shell script.
  95. config BUSYBOX_CONFIG_PMAP
  96. bool "pmap (6 kb)"
  97. default BUSYBOX_DEFAULT_PMAP
  98. help
  99. Display processes' memory mappings.
  100. config BUSYBOX_CONFIG_POWERTOP
  101. bool "powertop (9.6 kb)"
  102. default BUSYBOX_DEFAULT_POWERTOP
  103. help
  104. Analyze power consumption on Intel-based laptops
  105. config BUSYBOX_CONFIG_FEATURE_POWERTOP_INTERACTIVE
  106. bool "Accept keyboard commands"
  107. default BUSYBOX_DEFAULT_FEATURE_POWERTOP_INTERACTIVE
  108. depends on BUSYBOX_CONFIG_POWERTOP
  109. help
  110. Without this, powertop will only refresh display every 10 seconds.
  111. No keyboard commands will work, only ^C to terminate.
  112. config BUSYBOX_CONFIG_PS
  113. bool "ps (11 kb)"
  114. default BUSYBOX_DEFAULT_PS
  115. help
  116. ps gives a snapshot of the current processes.
  117. config BUSYBOX_CONFIG_FEATURE_PS_WIDE
  118. bool "Enable wide output (-w)"
  119. default BUSYBOX_DEFAULT_FEATURE_PS_WIDE
  120. depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && !BUSYBOX_CONFIG_DESKTOP
  121. help
  122. Support argument 'w' for wide output.
  123. If given once, 132 chars are printed, and if given more
  124. than once, the length is unlimited.
  125. config BUSYBOX_CONFIG_FEATURE_PS_LONG
  126. bool "Enable long output (-l)"
  127. default BUSYBOX_DEFAULT_FEATURE_PS_LONG
  128. depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && !BUSYBOX_CONFIG_DESKTOP
  129. help
  130. Support argument 'l' for long output.
  131. Adds fields PPID, RSS, START, TIME & TTY
  132. config BUSYBOX_CONFIG_FEATURE_PS_TIME
  133. bool "Enable -o time and -o etime specifiers"
  134. default BUSYBOX_DEFAULT_FEATURE_PS_TIME
  135. depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && BUSYBOX_CONFIG_DESKTOP
  136. select BUSYBOX_CONFIG_PLATFORM_LINUX
  137. config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
  138. bool "Support Linux prior to 2.4.0 and non-ELF systems"
  139. default BUSYBOX_DEFAULT_FEATURE_PS_UNUSUAL_SYSTEMS
  140. depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
  141. help
  142. Include support for measuring HZ on old kernels and non-ELF systems
  143. (if you are on Linux 2.4.0+ and use ELF, you don't need this)
  144. config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
  145. bool "Enable -o rgroup, -o ruser, -o nice specifiers"
  146. default BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS
  147. depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && BUSYBOX_CONFIG_DESKTOP
  148. config BUSYBOX_CONFIG_PSTREE
  149. bool "pstree (9.3 kb)"
  150. default BUSYBOX_DEFAULT_PSTREE
  151. help
  152. Display a tree of processes.
  153. config BUSYBOX_CONFIG_PWDX
  154. bool "pwdx (3.7 kb)"
  155. default BUSYBOX_DEFAULT_PWDX
  156. help
  157. Report current working directory of a process
  158. config BUSYBOX_CONFIG_SMEMCAP
  159. bool "smemcap (2.5 kb)"
  160. default BUSYBOX_DEFAULT_SMEMCAP
  161. help
  162. smemcap is a tool for capturing process data for smem,
  163. a memory usage statistic tool.
  164. config BUSYBOX_CONFIG_BB_SYSCTL
  165. bool "sysctl (7.4 kb)"
  166. default BUSYBOX_DEFAULT_BB_SYSCTL
  167. help
  168. Configure kernel parameters at runtime.
  169. config BUSYBOX_CONFIG_TOP
  170. bool "top (18 kb)"
  171. default BUSYBOX_DEFAULT_TOP
  172. help
  173. The top program provides a dynamic real-time view of a running
  174. system.
  175. config BUSYBOX_CONFIG_FEATURE_TOP_INTERACTIVE
  176. bool "Accept keyboard commands"
  177. default BUSYBOX_DEFAULT_FEATURE_TOP_INTERACTIVE
  178. depends on BUSYBOX_CONFIG_TOP
  179. help
  180. Without this, top will only refresh display every 5 seconds.
  181. No keyboard commands will work, only ^C to terminate.
  182. config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  183. bool "Show CPU per-process usage percentage"
  184. default BUSYBOX_DEFAULT_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  185. depends on BUSYBOX_CONFIG_TOP
  186. help
  187. Make top display CPU usage for each process.
  188. This adds about 2k.
  189. config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  190. bool "Show CPU global usage percentage"
  191. default BUSYBOX_DEFAULT_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  192. depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  193. help
  194. Makes top display "CPU: NN% usr NN% sys..." line.
  195. This adds about 0.5k.
  196. config BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU
  197. bool "SMP CPU usage display ('c' key)"
  198. default BUSYBOX_DEFAULT_FEATURE_TOP_SMP_CPU
  199. depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
  200. help
  201. Allow 'c' key to switch between individual/cumulative CPU stats
  202. This adds about 0.5k.
  203. config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
  204. bool "Show 1/10th of a percent in CPU/mem statistics"
  205. default BUSYBOX_DEFAULT_FEATURE_TOP_DECIMALS
  206. depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
  207. help
  208. Show 1/10th of a percent in CPU/mem statistics.
  209. This adds about 0.3k.
  210. config BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS
  211. bool "Show CPU process runs on ('j' field)"
  212. default BUSYBOX_DEFAULT_FEATURE_TOP_SMP_PROCESS
  213. depends on BUSYBOX_CONFIG_TOP
  214. help
  215. Show CPU where process was last found running on.
  216. This is the 'j' field.
  217. config BUSYBOX_CONFIG_FEATURE_TOPMEM
  218. bool "Topmem command ('s' key)"
  219. default BUSYBOX_DEFAULT_FEATURE_TOPMEM
  220. depends on BUSYBOX_CONFIG_TOP
  221. help
  222. Enable 's' in top (gives lots of memory info).
  223. config BUSYBOX_CONFIG_UPTIME
  224. bool "uptime (3.7 kb)"
  225. default BUSYBOX_DEFAULT_UPTIME
  226. select BUSYBOX_CONFIG_PLATFORM_LINUX #sysinfo()
  227. help
  228. uptime gives a one line display of the current time, how long
  229. the system has been running, how many users are currently logged
  230. on, and the system load averages for the past 1, 5, and 15 minutes.
  231. config BUSYBOX_CONFIG_FEATURE_UPTIME_UTMP_SUPPORT
  232. bool "Show the number of users"
  233. default BUSYBOX_DEFAULT_FEATURE_UPTIME_UTMP_SUPPORT
  234. depends on BUSYBOX_CONFIG_UPTIME && BUSYBOX_CONFIG_FEATURE_UTMP
  235. help
  236. Display the number of users currently logged on.
  237. config BUSYBOX_CONFIG_WATCH
  238. bool "watch (4.4 kb)"
  239. default BUSYBOX_DEFAULT_WATCH
  240. help
  241. watch is used to execute a program periodically, showing
  242. output to the screen.
  243. config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
  244. bool "Support thread display in ps/pstree/top"
  245. default BUSYBOX_DEFAULT_FEATURE_SHOW_THREADS
  246. depends on BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_TOP || BUSYBOX_CONFIG_PSTREE
  247. help
  248. Enables the ps -T option, showing of threads in pstree,
  249. and 'h' command in top.
  250. endmenu