Config.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_KILL
  14. bool "kill"
  15. default n
  16. help
  17. The command kill sends the specified signal to the specified
  18. process or process group. If no signal is specified, the TERM
  19. signal is sent.
  20. config CONFIG_KILLALL
  21. bool "killall"
  22. default n
  23. depends on CONFIG_KILL
  24. help
  25. killall sends a signal to all processes running any of the
  26. specified commands. If no signal name is specified, SIGTERM is
  27. sent.
  28. config CONFIG_PIDOF
  29. bool "pidof"
  30. default n
  31. help
  32. Pidof finds the process id's (pids) of the named programs. It prints
  33. those id's on the standard output.
  34. config CONFIG_PS
  35. bool "ps"
  36. default n
  37. help
  38. ps gives a snapshot of the current processes.
  39. config CONFIG_RENICE
  40. bool "renice"
  41. default n
  42. help
  43. Renice alters the scheduling priority of one or more running
  44. processes.
  45. config CONFIG_TOP
  46. bool "top"
  47. default n
  48. help
  49. The top program provides a dynamic real-time view of a running
  50. system.
  51. config FEATURE_CPU_USAGE_PERCENTAGE
  52. bool " Support showing CPU usage percentage (add 2k bytes)"
  53. default y
  54. depends on CONFIG_TOP
  55. help
  56. Make top display CPU usage.
  57. config CONFIG_UPTIME
  58. bool "uptime"
  59. default n
  60. help
  61. uptime gives a one line display of the current time, how long
  62. the system has been running, how many users are currently logged
  63. on, and the system load averages for the past 1, 5, and 15 minutes.
  64. config CONFIG_SYSCTL
  65. bool "sysctl"
  66. default n
  67. help
  68. sysctl - configure kernel parameters at runtime
  69. endmenu