2005-04-17 00:20:36 +02: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 13:41:22 +01:00
|
|
|
if OPROFILE
|
|
|
|
|
|
|
|
config OPROFILE_ARMV6
|
|
|
|
bool
|
|
|
|
depends on CPU_V6 && !SMP
|
|
|
|
default y
|
|
|
|
select OPROFILE_ARM11_CORE
|
|
|
|
|
2006-12-19 15:17:46 +01:00
|
|
|
config OPROFILE_MPCORE
|
|
|
|
bool
|
|
|
|
depends on CPU_V6 && SMP
|
|
|
|
default y
|
|
|
|
select OPROFILE_ARM11_CORE
|
|
|
|
|
2006-12-19 13:24:25 +01:00
|
|
|
config OPROFILE_ARM11_CORE
|
|
|
|
bool
|
|
|
|
|
2006-12-19 13:41:22 +01:00
|
|
|
endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
endmenu
|
|
|
|
|