Config.in 765 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_SYSDIG
  2. bool "sysdig"
  3. depends on BR2_LINUX_KERNEL
  4. depends on BR2_INSTALL_LIBSTDCPP # libjson
  5. depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
  6. depends on !BR2_STATIC_LIBS # luajit
  7. select BR2_PACKAGE_ZLIB
  8. select BR2_PACKAGE_LUAJIT
  9. select BR2_PACKAGE_JSONCPP
  10. help
  11. Sysdig is open source, system-level exploration:
  12. capture system state and activity from a running Linux instance,
  13. then save, filter and analyze.
  14. Think of it as strace + tcpdump + lsof + awesome sauce.
  15. With a little Lua cherry on top.
  16. http://sysdig.org
  17. comment "sysdig needs a toolchain w/ C++, dynamic library and a Linux kernel to be built"
  18. depends on !BR2_LINUX_KERNEL || !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
  19. depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS