Blame view

arch/ppc/Kconfig.debug 1.46 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  menu "Kernel hacking"
  
  source "lib/Kconfig.debug"
  
  config KGDB
  	bool "Include kgdb kernel debugger"
  	depends on DEBUG_KERNEL && (BROKEN || PPC_GEN550 || 4xx)
  	select DEBUG_INFO
  	help
  	  Include in-kernel hooks for kgdb, the Linux kernel source level
  	  debugger.  See <http://kgdb.sourceforge.net/> for more information.
  	  Unless you are intending to debug the kernel, say N here.
  
  choice
  	prompt "Serial Port"
  	depends on KGDB
  	default KGDB_TTYS1
  
  config KGDB_TTYS0
  	bool "ttyS0"
  
  config KGDB_TTYS1
  	bool "ttyS1"
  
  config KGDB_TTYS2
  	bool "ttyS2"
  
  config KGDB_TTYS3
  	bool "ttyS3"
  
  endchoice
  
  config KGDB_CONSOLE
  	bool "Enable serial console thru kgdb port"
  	depends on KGDB && 8xx || CPM2
  	help
  	  If you enable this, all serial console messages will be sent
  	  over the gdb stub.
  	  If unsure, say N.
  
  config XMON
  	bool "Include xmon kernel debugger"
  	depends on DEBUG_KERNEL
  	help
  	  Include in-kernel hooks for the xmon kernel monitor/debugger.
  	  Unless you are intending to debug the kernel, say N here.
  
  config BDI_SWITCH
  	bool "Include BDI-2000 user context switcher"
  	depends on DEBUG_KERNEL
  	help
  	  Include in-kernel support for the Abatron BDI2000 debugger.
  	  Unless you are intending to debug the kernel with one of these
  	  machines, say N here.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
  config SERIAL_TEXT_DEBUG
  	bool "Support for early boot texts over serial port"
d01c08c9a   Mark A. Greer   [PATCH] ppc32: mv...
57
58
  	depends on 4xx || LOPEC || MV64X60 || PPLUS || PRPMC800 || \
  		PPC_GEN550 || PPC_MPC52xx
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
60
61
  
  config PPC_OCP
  	bool
e27db622b   Grant C. Likely   [PATCH] powerpc: ...
62
  	depends on IBM_OCP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
64
65
  	default y
  
  endmenu