Blame view

arch/m68k/Kconfig.debug 1.12 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  menu "Kernel hacking"
  
  source "lib/Kconfig.debug"
d1db9120c   Greg Ungerer   m68k: support con...
4
5
6
7
8
9
10
  config BOOTPARAM
  	bool 'Compiled-in Kernel Boot Parameter'
  
  config BOOTPARAM_STRING
  	string 'Kernel Boot Parameter'
  	default 'console=ttyS0,19200'
  	depends on BOOTPARAM
f99948949   Kars de Jong   m68k/mvme16x: Add...
11
12
  config EARLY_PRINTK
  	bool "Early printk" if EMBEDDED
93edd023a   Finn Thain   m68k/mac: early c...
13
  	depends on MVME16x || MAC
f99948949   Kars de Jong   m68k/mvme16x: Add...
14
15
16
17
18
19
20
  	default y
  	help
            Write kernel log output directly to a serial port.
  
            This is useful for kernel debugging when your machine crashes very
            early before the console code is initialized.
            You should normally say N here, unless you want to debug such a crash.
66d857b08   Greg Ungerer   m68k: merge m68k ...
21
22
23
24
25
26
27
28
29
30
31
32
  if !MMU
  
  config FULLDEBUG
  	bool "Full Symbolic/Source Debugging support"
  	help
  	  Enable debugging symbols on kernel build.
  
  config HIGHPROFILE
  	bool "Use fast second timer for profiling"
  	depends on COLDFIRE
  	help
  	  Use a fast secondary clock to produce profiling information.
66d857b08   Greg Ungerer   m68k: merge m68k ...
33
34
35
36
37
38
39
40
41
42
43
44
  config NO_KERNEL_MSG
  	bool "Suppress Kernel BUG Messages"
  	help
  	  Do not output any debug BUG messages within the kernel.
  
  config BDM_DISABLE
  	bool "Disable BDM signals"
  	depends on (EXPERIMENTAL && COLDFIRE)
  	help
  	  Disable the ColdFire CPU's BDM signals.
  
  endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
  endmenu