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