Config.tools.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. config BR2_LINUX_KERNEL_TOOL_SELFTESTS
  25. bool"selftests"
  26. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
  27. depends on BR2_USE_MMU # bash
  28. select BR2_PACKAGE_BASH # runtime
  29. select BR2_PACKAGE_POPT
  30. select BR2_PACKAGE_LIBCAP_NG
  31. help
  32. Build and install (to /usr/lib/kselftests) kernel selftests.
  33. Use of this option implies you know the process of using and
  34. compiling the kernel selftests. The Makefile to build and
  35. install these is very noisy and may appear to cause your
  36. build to fail for strange reasons.
  37. This is very much a use at your risk option and may not work
  38. for every setup or every architecture.
  39. comment "selftests needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
  40. depends on BR2_USE_MMU
  41. depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  42. endmenu