aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/Kconfig.debug
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/um/Kconfig.debug
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/um/Kconfig.debug')
-rw-r--r--arch/um/Kconfig.debug53
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/um/Kconfig.debug b/arch/um/Kconfig.debug
new file mode 100644
index 000000000000..b89989de364d
--- /dev/null
+++ b/arch/um/Kconfig.debug
@@ -0,0 +1,53 @@
1menu "Kernel hacking"
2
3source "lib/Kconfig.debug"
4
5config FRAME_POINTER
6 bool
7 default y if DEBUG_INFO
8
9config PT_PROXY
10 bool "Enable ptrace proxy"
11 depends on XTERM_CHAN && DEBUG_INFO && MODE_TT
12 help
13 This option enables a debugging interface which allows gdb to debug
14 the kernel without needing to actually attach to kernel threads.
15 If you want to do kernel debugging, say Y here; otherwise say N.
16
17config GPROF
18 bool "Enable gprof support"
19 depends on DEBUG_INFO && MODE_SKAS && !MODE_TT
20 help
21 This allows profiling of a User-Mode Linux kernel with the gprof
22 utility.
23
24 See <http://user-mode-linux.sourceforge.net/gprof.html> for more
25 details.
26
27 If you're involved in UML kernel development and want to use gprof,
28 say Y. If you're unsure, say N.
29
30config GCOV
31 bool "Enable gcov support"
32 depends on DEBUG_INFO && MODE_SKAS
33 help
34 This option allows developers to retrieve coverage data from a UML
35 session.
36
37 See <http://user-mode-linux.sourceforge.net/gprof.html> for more
38 details.
39
40 If you're involved in UML kernel development and want to use gcov,
41 say Y. If you're unsure, say N.
42
43config SYSCALL_DEBUG
44 bool "Enable system call debugging"
45 default N
46 depends on DEBUG_INFO
47 help
48 This adds some system debugging to UML, including keeping a ring buffer
49 with recent system calls and some global and per-task statistics.
50
51 If unsure, say N
52
53endmenu