Config.in 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 FREE
  7. bool "free"
  8. default n
  9. help
  10. free displays the total amount of free and used physical and swap
  11. memory in the system, as well as the buffers used by the kernel.
  12. The shared memory column should be ignored; it is obsolete.
  13. config FUSER
  14. bool "fuser"
  15. default n
  16. help
  17. fuser lists all PIDs (Process IDs) that currently have a given
  18. file open. fuser can also list all PIDs that have a given network
  19. (TCP or UDP) port open.
  20. config KILL
  21. bool "kill"
  22. default n
  23. help
  24. The command kill sends the specified signal to the specified
  25. process or process group. If no signal is specified, the TERM
  26. signal is sent.
  27. config KILLALL
  28. bool "killall"
  29. default n
  30. depends on KILL
  31. help
  32. killall sends a signal to all processes running any of the
  33. specified commands. If no signal name is specified, SIGTERM is
  34. sent.
  35. config KILLALL5
  36. bool "killall5"
  37. default n
  38. depends on KILL
  39. config NMETER
  40. bool "nmeter"
  41. default n
  42. help
  43. Prints selected system stats continuously, one line per update.
  44. config PGREP
  45. bool "pgrep"
  46. default n
  47. help
  48. Look for processes by name.
  49. config PIDOF
  50. bool "pidof"
  51. default n
  52. help
  53. Pidof finds the process id's (pids) of the named programs. It prints
  54. those id's on the standard output.
  55. config FEATURE_PIDOF_SINGLE
  56. bool "Enable argument for single shot (-s)"
  57. default n
  58. depends on PIDOF
  59. help
  60. Support argument '-s' for returning only the first pid found.
  61. config FEATURE_PIDOF_OMIT
  62. bool "Enable argument for omitting pids (-o)"
  63. default n
  64. depends on PIDOF
  65. help
  66. Support argument '-o' for omitting the given pids in output.
  67. The special pid %PPID can be used to name the parent process
  68. of the pidof, in other words the calling shell or shell script.
  69. config PKILL
  70. bool "pkill"
  71. default n
  72. help
  73. Send signals to processes by name.
  74. config PS
  75. bool "ps"
  76. default n
  77. help
  78. ps gives a snapshot of the current processes.
  79. config FEATURE_PS_WIDE
  80. bool "Enable argument for wide output (-w)"
  81. default n
  82. depends on PS
  83. help
  84. Support argument 'w' for wide output.
  85. If given once, 132 chars are printed and given more than
  86. one, the length is unlimited.
  87. config RENICE
  88. bool "renice"
  89. default n
  90. help
  91. Renice alters the scheduling priority of one or more running
  92. processes.
  93. config BB_SYSCTL
  94. bool "sysctl"
  95. default n
  96. help
  97. Configure kernel parameters at runtime.
  98. config TOP
  99. bool "top"
  100. default n
  101. help
  102. The top program provides a dynamic real-time view of a running
  103. system.
  104. config FEATURE_TOP_CPU_USAGE_PERCENTAGE
  105. bool "Show CPU per-process usage percentage (adds 2k bytes)"
  106. default y
  107. depends on TOP
  108. help
  109. Make top display CPU usage for each process.
  110. config FEATURE_TOP_CPU_GLOBAL_PERCENTS
  111. bool "Show CPU global usage percentage (adds 0.5k bytes)"
  112. default y
  113. depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
  114. help
  115. Makes top display "CPU: NN% usr NN% sys..." line.
  116. config FEATURE_TOP_DECIMALS
  117. bool "Show 1/10th of a percent in CPU/mem statistics (adds 0.3k bytes)"
  118. default n
  119. depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
  120. help
  121. Show 1/10th of a percent in CPU/mem statistics.
  122. config FEATURE_TOPMEM
  123. bool "topmem"
  124. default n
  125. depends on TOP
  126. help
  127. Enable 's' in top (gives lots of memory info)
  128. config UPTIME
  129. bool "uptime"
  130. default n
  131. help
  132. uptime gives a one line display of the current time, how long
  133. the system has been running, how many users are currently logged
  134. on, and the system load averages for the past 1, 5, and 15 minutes.
  135. config WATCH
  136. bool "watch"
  137. default n
  138. #huh?? select DATE
  139. help
  140. watch is used to execute a program periodically, showing
  141. output to the screen.
  142. endmenu