Config.in 2.8 KB

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