2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
menu "Profiling support"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
|
|
|
|
config PROFILING
|
|
|
|
bool "Profiling support (EXPERIMENTAL)"
|
|
|
|
help
|
|
|
|
Say Y here to enable the extended profiling support mechanisms used
|
|
|
|
by profilers such as OProfile.
|
|
|
|
|
|
|
|
|
|
|
|
config OPROFILE
|
|
|
|
tristate "OProfile system profiling (EXPERIMENTAL)"
|
|
|
|
depends on PROFILING
|
|
|
|
help
|
|
|
|
OProfile is a profiling system capable of profiling the
|
|
|
|
whole system, include the kernel, kernel modules, libraries,
|
|
|
|
and applications.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-12-19 07:41:22 -05:00
|
|
|
if OPROFILE
|
|
|
|
|
|
|
|
config OPROFILE_ARMV6
|
|
|
|
bool
|
|
|
|
depends on CPU_V6 && !SMP
|
|
|
|
default y
|
|
|
|
select OPROFILE_ARM11_CORE
|
|
|
|
|
2006-12-19 09:17:46 -05:00
|
|
|
config OPROFILE_MPCORE
|
|
|
|
bool
|
|
|
|
depends on CPU_V6 && SMP
|
|
|
|
default y
|
|
|
|
select OPROFILE_ARM11_CORE
|
|
|
|
|
2006-12-19 07:24:25 -05:00
|
|
|
config OPROFILE_ARM11_CORE
|
|
|
|
bool
|
|
|
|
|
2006-12-19 07:41:22 -05:00
|
|
|
endif
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
endmenu
|
|
|
|
|