Kconfig 740 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. menu "Profiling support"
  2. depends on EXPERIMENTAL
  3. config PROFILING
  4. bool "Profiling support (EXPERIMENTAL)"
  5. help
  6. Say Y here to enable the extended profiling support mechanisms used
  7. by profilers such as OProfile.
  8. config OPROFILE
  9. tristate "OProfile system profiling (EXPERIMENTAL)"
  10. depends on PROFILING
  11. help
  12. OProfile is a profiling system capable of profiling the
  13. whole system, include the kernel, kernel modules, libraries,
  14. and applications.
  15. If unsure, say N.
  16. if OPROFILE
  17. config OPROFILE_ARMV6
  18. bool
  19. depends on CPU_V6 && !SMP
  20. default y
  21. select OPROFILE_ARM11_CORE
  22. config OPROFILE_MPCORE
  23. bool
  24. depends on CPU_V6 && SMP
  25. default y
  26. select OPROFILE_ARM11_CORE
  27. config OPROFILE_ARM11_CORE
  28. bool
  29. endif
  30. endmenu