diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/ppc/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/ppc/Kconfig.debug')
-rw-r--r-- | arch/ppc/Kconfig.debug | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/arch/ppc/Kconfig.debug b/arch/ppc/Kconfig.debug new file mode 100644 index 000000000000..d2e1eea8e8e4 --- /dev/null +++ b/arch/ppc/Kconfig.debug | |||
@@ -0,0 +1,72 @@ | |||
1 | menu "Kernel hacking" | ||
2 | |||
3 | source "lib/Kconfig.debug" | ||
4 | |||
5 | config KGDB | ||
6 | bool "Include kgdb kernel debugger" | ||
7 | depends on DEBUG_KERNEL && (BROKEN || PPC_GEN550 || 4xx) | ||
8 | select DEBUG_INFO | ||
9 | help | ||
10 | Include in-kernel hooks for kgdb, the Linux kernel source level | ||
11 | debugger. See <http://kgdb.sourceforge.net/> for more information. | ||
12 | Unless you are intending to debug the kernel, say N here. | ||
13 | |||
14 | choice | ||
15 | prompt "Serial Port" | ||
16 | depends on KGDB | ||
17 | default KGDB_TTYS1 | ||
18 | |||
19 | config KGDB_TTYS0 | ||
20 | bool "ttyS0" | ||
21 | |||
22 | config KGDB_TTYS1 | ||
23 | bool "ttyS1" | ||
24 | |||
25 | config KGDB_TTYS2 | ||
26 | bool "ttyS2" | ||
27 | |||
28 | config KGDB_TTYS3 | ||
29 | bool "ttyS3" | ||
30 | |||
31 | endchoice | ||
32 | |||
33 | config KGDB_CONSOLE | ||
34 | bool "Enable serial console thru kgdb port" | ||
35 | depends on KGDB && 8xx || CPM2 | ||
36 | help | ||
37 | If you enable this, all serial console messages will be sent | ||
38 | over the gdb stub. | ||
39 | If unsure, say N. | ||
40 | |||
41 | config XMON | ||
42 | bool "Include xmon kernel debugger" | ||
43 | depends on DEBUG_KERNEL | ||
44 | help | ||
45 | Include in-kernel hooks for the xmon kernel monitor/debugger. | ||
46 | Unless you are intending to debug the kernel, say N here. | ||
47 | |||
48 | config BDI_SWITCH | ||
49 | bool "Include BDI-2000 user context switcher" | ||
50 | depends on DEBUG_KERNEL | ||
51 | help | ||
52 | Include in-kernel support for the Abatron BDI2000 debugger. | ||
53 | Unless you are intending to debug the kernel with one of these | ||
54 | machines, say N here. | ||
55 | |||
56 | config BOOTX_TEXT | ||
57 | bool "Support for early boot text console (BootX or OpenFirmware only)" | ||
58 | depends PPC_OF | ||
59 | help | ||
60 | Say Y here to see progress messages from the boot firmware in text | ||
61 | mode. Requires either BootX or Open Firmware. | ||
62 | |||
63 | config SERIAL_TEXT_DEBUG | ||
64 | bool "Support for early boot texts over serial port" | ||
65 | depends on 4xx || GT64260 || LOPEC || PPLUS || PRPMC800 || PPC_GEN550 || PPC_MPC52xx | ||
66 | |||
67 | config PPC_OCP | ||
68 | bool | ||
69 | depends on IBM_OCP || FSL_OCP || XILINX_OCP | ||
70 | default y | ||
71 | |||
72 | endmenu | ||