Config.in 644 B

123456789101112131415161718
  1. config BR2_PACKAGE_TRACE_CMD
  2. bool "trace-cmd"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_USE_MMU # fork()
  5. depends on !BR2_STATIC_LIBS # dlopen()
  6. help
  7. Command line reader for ftrace.
  8. To use this profiling tool, you should enable ftrace in your
  9. kernel configuration. This command collect traces on your
  10. target. You can analyse these traces on the target or on
  11. the host via the gui "kernel shark"
  12. http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
  13. comment "trace-cmd needs a toolchain w/ threads, dynamic library"
  14. depends on BR2_USE_MMU
  15. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS