1config BR2_PACKAGE_NETDATA 2 bool "netdata" 3 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 4 depends on BR2_USE_MMU # fork() 5 depends on !BR2_STATIC_LIBS # libuv 6 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv 7 select BR2_PACKAGE_LIBUV 8 select BR2_PACKAGE_UTIL_LINUX 9 select BR2_PACKAGE_UTIL_LINUX_LIBUUID 10 select BR2_PACKAGE_ZLIB 11 help 12 Netdata is distributed, real-time, performance and health 13 monitoring for systems and applications. It is a highly 14 optimized monitoring agent you install on all your systems and 15 containers. 16 17 https://github.com/netdata/netdata 18 19comment "netdata needs a toolchain w/ NPTL, dynamic library" 20 depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS 21 depends on BR2_USE_MMU 22 depends on BR2_TOOLCHAIN_HAS_SYNC_4 23