1config 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 21 http://www.atoptool.nl 22 23comment "atop needs a toolchain w/ wchar, headers >= 3.14" 24 depends on BR2_USE_MMU 25 depends on !BR2_USE_WCHAR || \ 26 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14 27