Config.tools.in 961 B

1234567891011121314151617181920212223242526272829
  1. menu "Linux Kernel Tools"
  2. config BR2_LINUX_KERNEL_TOOL_CPUPOWER
  3. bool "cpupower"
  4. depends on !BR2_bfin # pciutils
  5. select BR2_PACKAGE_PCIUTILS
  6. help
  7. cpupower is a collection of tools to examine and tune power
  8. saving related features of your processor.
  9. config BR2_LINUX_KERNEL_TOOL_PERF
  10. bool "perf"
  11. help
  12. perf (sometimes "Perf Events" or perf tools, originally
  13. "Performance Counters for Linux") - is a performance
  14. analyzing tool in Linux, available from kernel version
  15. 2.6.31. User-space controlling utility, called 'perf' has
  16. git-like interface with subcommands. It is capable of
  17. statistical profiling of entire system (both kernel and user
  18. code), single CPU or severals threads.
  19. This will build and install the userspace 'perf'
  20. command. It is up to the user to ensure that the kernel
  21. configuration has all the suitable options enabled to allow a
  22. proper operation of 'perf'.
  23. https://perf.wiki.kernel.org/
  24. endmenu