Kconfig.debug 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config KGDB
  4. bool "Include kgdb kernel debugger"
  5. depends on DEBUG_KERNEL && (BROKEN || PPC_GEN550 || 4xx)
  6. select DEBUG_INFO
  7. help
  8. Include in-kernel hooks for kgdb, the Linux kernel source level
  9. debugger. See <http://kgdb.sourceforge.net/> for more information.
  10. Unless you are intending to debug the kernel, say N here.
  11. choice
  12. prompt "Serial Port"
  13. depends on KGDB
  14. default KGDB_TTYS1
  15. config KGDB_TTYS0
  16. bool "ttyS0"
  17. config KGDB_TTYS1
  18. bool "ttyS1"
  19. config KGDB_TTYS2
  20. bool "ttyS2"
  21. config KGDB_TTYS3
  22. bool "ttyS3"
  23. endchoice
  24. config KGDB_CONSOLE
  25. bool "Enable serial console thru kgdb port"
  26. depends on KGDB && 8xx || CPM2
  27. help
  28. If you enable this, all serial console messages will be sent
  29. over the gdb stub.
  30. If unsure, say N.
  31. config XMON
  32. bool "Include xmon kernel debugger"
  33. depends on DEBUG_KERNEL
  34. help
  35. Include in-kernel hooks for the xmon kernel monitor/debugger.
  36. Unless you are intending to debug the kernel, say N here.
  37. config BDI_SWITCH
  38. bool "Include BDI-2000 user context switcher"
  39. depends on DEBUG_KERNEL
  40. help
  41. Include in-kernel support for the Abatron BDI2000 debugger.
  42. Unless you are intending to debug the kernel with one of these
  43. machines, say N here.
  44. config BOOTX_TEXT
  45. bool "Support for early boot text console (BootX or OpenFirmware only)"
  46. depends PPC_OF
  47. help
  48. Say Y here to see progress messages from the boot firmware in text
  49. mode. Requires either BootX or Open Firmware.
  50. config SERIAL_TEXT_DEBUG
  51. bool "Support for early boot texts over serial port"
  52. depends on 4xx || LOPEC || MV64X60 || PPLUS || PRPMC800 || \
  53. PPC_GEN550 || PPC_MPC52xx
  54. config PPC_OCP
  55. bool
  56. depends on IBM_OCP || XILINX_OCP
  57. default y
  58. endmenu