Config.in 1.0 KB

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