Config.in 962 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_ATOP
  2. bool "atop"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14 # PERF_FLAG_FD_CLOEXEC
  5. select BR2_PACKAGE_NCURSES
  6. select BR2_PACKAGE_ZLIB
  7. help
  8. Atop is an ASCII full-screen performance monitor for Linux
  9. that is capable of reporting the activity of all processes
  10. (even if processes have finished during the interval), daily
  11. logging of system and process activity for long-term analysis,
  12. highlighting overloaded system resources by using colors, etc.
  13. At regular intervals, it shows system-level activity related
  14. to the CPU, memory, swap, disks (including LVM) and network
  15. layers, and for every process (and thread) it shows e.g. the
  16. CPU utilization, memory growth, disk utilization, priority,
  17. username, state, and exit code.
  18. http://www.atoptool.nl
  19. comment "atop needs a toolchain w/ headers >= 3.14"
  20. depends on BR2_USE_MMU
  21. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14