Config.in 965 B

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_KTAP
  2. bool "ktap"
  3. depends on BR2_LINUX_KERNEL
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. help
  6. ktap is a script-based dynamic tracing tool for Linux
  7. It uses a scripting language and lets users trace the Linux
  8. kernel dynamically. ktap is designed to give operational
  9. insights with interoperability that allows users to tune,
  10. troubleshoot and extend kernel and application.
  11. It's similar to Linux Systemtap and Solaris Dtrace.
  12. ktap doesn't support kernels older than 3.1.
  13. To be able to resolve symbols in DSO and for sdt, you need to
  14. enable elfutils.
  15. Your kernel must have CONFIG_EVENT_TRACING,
  16. CONFIG_PERF_EVENTS, and CONFIG_DEBUG_FS enabled to compile.
  17. Buildroot automatically enables these in the kernel
  18. configuration.
  19. http://www.ktap.org
  20. comment "ktap needs a Linux kernel to be built"
  21. depends on !BR2_LINUX_KERNEL
  22. comment "ktap needs a toolchain w/ threads"
  23. depends on !BR2_TOOLCHAIN_HAS_THREADS