Config.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 PIDOF
  40. bool "pidof"
  41. default n
  42. help
  43. Pidof finds the process id's (pids) of the named programs. It prints
  44. those id's on the standard output.
  45. config FEATURE_PIDOF_SINGLE
  46. bool "Enable argument for single shot (-s)"
  47. default n
  48. depends on PIDOF
  49. help
  50. Support argument '-s' for returning only the first pid found.
  51. config FEATURE_PIDOF_OMIT
  52. bool "Enable argument for omitting pids (-o)"
  53. default n
  54. depends on PIDOF
  55. help
  56. Support argument '-o' for omitting the given pids in output.
  57. The special pid %PPID can be used to name the parent process
  58. of the pidof, in other words the calling shell or shell script.
  59. config PS
  60. bool "ps"
  61. default n
  62. help
  63. ps gives a snapshot of the current processes.
  64. config FEATURE_PS_WIDE
  65. bool "Enable argument for wide output (-w)"
  66. default n
  67. depends on PS
  68. help
  69. Support argument 'w' for wide output.
  70. If given once, 132 chars are printed and given more than
  71. one, the length is unlimited.
  72. config RENICE
  73. bool "renice"
  74. default n
  75. help
  76. Renice alters the scheduling priority of one or more running
  77. processes.
  78. config BB_SYSCTL
  79. bool "sysctl"
  80. default n
  81. help
  82. Configure kernel parameters at runtime.
  83. config TOP
  84. bool "top"
  85. default n
  86. help
  87. The top program provides a dynamic real-time view of a running
  88. system.
  89. config FEATURE_TOP_CPU_USAGE_PERCENTAGE
  90. bool "Support showing CPU usage percentage (add 2k bytes)"
  91. default y
  92. depends on TOP
  93. help
  94. Make top display CPU usage.
  95. config UPTIME
  96. bool "uptime"
  97. default n
  98. help
  99. uptime gives a one line display of the current time, how long
  100. the system has been running, how many users are currently logged
  101. on, and the system load averages for the past 1, 5, and 15 minutes.
  102. endmenu