2017-11-01 15:07:57 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
config GPROF
|
|
|
|
|
bool "Enable gprof support"
|
2008-02-04 22:30:42 -08:00
|
|
|
depends on DEBUG_INFO && FRAME_POINTER
|
2005-04-16 15:20:36 -07:00
|
|
|
help
|
2007-10-16 01:26:54 -07:00
|
|
|
This allows profiling of a User-Mode Linux kernel with the gprof
|
|
|
|
|
utility.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-02-04 22:30:38 -08:00
|
|
|
See <http://user-mode-linux.sourceforge.net/old/gprof.html> for more
|
2007-10-16 01:26:54 -07:00
|
|
|
details.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-16 01:26:54 -07:00
|
|
|
If you're involved in UML kernel development and want to use gprof,
|
|
|
|
|
say Y. If you're unsure, say N.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
config GCOV
|
|
|
|
|
bool "Enable gcov support"
|
2007-10-16 01:26:50 -07:00
|
|
|
depends on DEBUG_INFO
|
2018-10-30 12:58:12 +01:00
|
|
|
depends on !KCOV
|
2021-03-15 23:47:31 +01:00
|
|
|
depends on !MODULES
|
2005-04-16 15:20:36 -07:00
|
|
|
help
|
2007-10-16 01:26:54 -07:00
|
|
|
This option allows developers to retrieve coverage data from a UML
|
|
|
|
|
session.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-02-04 22:30:38 -08:00
|
|
|
See <http://user-mode-linux.sourceforge.net/old/gprof.html> for more
|
2007-10-16 01:26:54 -07:00
|
|
|
details.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-16 01:26:54 -07:00
|
|
|
If you're involved in UML kernel development and want to use gcov,
|
|
|
|
|
say Y. If you're unsure, say N.
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2011-05-24 17:13:01 -07:00
|
|
|
config EARLY_PRINTK
|
|
|
|
|
bool "Early printk"
|
|
|
|
|
default y
|
2020-06-14 01:50:22 +09:00
|
|
|
help
|
2011-05-24 17:13:01 -07:00
|
|
|
Write kernel log output directly to stdout.
|
|
|
|
|
|
|
|
|
|
This is useful for kernel debugging when your machine crashes very
|
|
|
|
|
early before the console code is initialized.
|