Config.in.debug 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. menu "Kernel debugging"
  2. config ADK_KERNEL_PROFILING
  3. boolean
  4. config ADK_KERNEL_DEBUG_KERNEL
  5. boolean
  6. config ADK_KERNEL_DEBUG_INFO
  7. boolean
  8. config ADK_KERNEL_KGDB
  9. boolean
  10. config ADK_KERNEL_KGDB_SERIAL_CONSOLE
  11. boolean
  12. config ADK_KERNEL_FRAME_POINTER
  13. boolean
  14. config ADK_QUIET_KERNEL
  15. prompt "Make bootup quiet without messages from the kernel"
  16. boolean
  17. default n
  18. help
  19. Make bootup quiet without messages from the kernel.
  20. config ADK_KERNEL_NETCONSOLE
  21. prompt "Netconsole"
  22. boolean
  23. default n
  24. help
  25. Activate netconsole. netconsole=@/,@192.168.1.2/
  26. config ADK_PARAMETER_NETCONSOLE_SRC_IP
  27. prompt "IP address for source"
  28. string
  29. default "192.168.1.100"
  30. depends on ADK_KERNEL_NETCONSOLE
  31. help
  32. source ip address logging from.
  33. config ADK_PARAMETER_NETCONSOLE_DST_IP
  34. prompt "IP address for target"
  35. string
  36. default "192.168.1.2"
  37. depends on ADK_KERNEL_NETCONSOLE
  38. help
  39. ip address logging to.
  40. config ADK_KERNEL_MAGIC_SYSRQ
  41. prompt "Magic BREAK sequence"
  42. boolean
  43. default y
  44. help
  45. Enable this to be able to use the Magic SysRq functions,
  46. probably using a serial console break.
  47. config ADK_KERNEL_DEBUG_FS
  48. prompt "Debug Filesystem"
  49. boolean
  50. default y
  51. help
  52. debugfs is a virtual file system that kernel developers use to put
  53. debugging files into. Enable this option to be able to read and
  54. write to these files.
  55. config ADK_KERNEL_DEBUG_WITH_KGDB
  56. prompt "Enable remote kernel debugging using KGDB"
  57. boolean
  58. select ADK_KERNEL_DEBUG_KERNEL
  59. select ADK_KERNEL_DEBUG_INFO
  60. select ADK_KERNEL_KGDB
  61. select ADK_KERNEL_KGDB_SERIAL_CONSOLE
  62. select ADK_KERNEL_FRAME_POINTER
  63. depends on ADK_TARGET_ROOTFS_NFSROOT || \
  64. ADK_TARGET_ROOTFS_ARCHIVE || \
  65. ADK_TARGET_ROOTFS_YAFFS
  66. default n
  67. config ADK_KPACKAGE_KMOD_OPROFILE
  68. prompt "kernel support for oprofile"
  69. tristate
  70. select ADK_KERNEL_PROFILING
  71. depends on !ADK_TARGET_SYSTEM_FOXBOARD_LX
  72. default n
  73. help
  74. use oprofile package to make use of the kernel support.
  75. config ADK_KERNEL_KALLSYMS
  76. prompt "kernel support for symbol names in oops"
  77. boolean
  78. default n
  79. help
  80. Load all symbols to the kernel.
  81. endmenu