Config.in.debug 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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_EARLY_PRINTK
  21. boolean
  22. default n
  23. config ADK_KERNEL_PRINTK
  24. prompt "printk support (disable to save space and quieten bootup)"
  25. boolean
  26. select ADK_KERNEL_EARLY_PRINTK
  27. default y
  28. help
  29. Disable printk to save space and quieten bootup.
  30. config ADK_KERNEL_PRINTK_TIME
  31. prompt "timing information for printk"
  32. boolean
  33. depends on ADK_KERNEL_PRINTK
  34. default n
  35. help
  36. Enable timing information for printk, to analyze kernel
  37. bootup performance.
  38. config ADK_KERNEL_BUG
  39. prompt "Enable BUGS()"
  40. boolean
  41. default n
  42. help
  43. Enable if you need BUGS() in the kernel.
  44. config ADK_KERNEL_NETCONSOLE
  45. prompt "Netconsole support"
  46. boolean
  47. default n
  48. help
  49. Activate netconsole. netconsole=@/,@192.168.1.2/
  50. config ADK_PARAMETER_NETCONSOLE_SRC_IP
  51. prompt "IP address for source"
  52. string
  53. default "192.168.1.100"
  54. depends on ADK_KERNEL_NETCONSOLE
  55. help
  56. source ip address logging from.
  57. config ADK_PARAMETER_NETCONSOLE_DST_IP
  58. prompt "IP address for target"
  59. string
  60. default "192.168.1.2"
  61. depends on ADK_KERNEL_NETCONSOLE
  62. help
  63. ip address logging to.
  64. config ADK_KERNEL_MAGIC_SYSRQ
  65. prompt "Magic BREAK sequence"
  66. boolean
  67. default y
  68. help
  69. Enable this to be able to use the Magic SysRq functions,
  70. probably using a serial console break.
  71. config ADK_KERNEL_DEBUG_FS
  72. prompt "Debug Filesystem"
  73. boolean
  74. default n
  75. help
  76. debugfs is a virtual file system that kernel developers use to put
  77. debugging files into. Enable this option to be able to read and
  78. write to these files.
  79. config ADK_KERNEL_DEBUG_INFO
  80. prompt "Debug info"
  81. boolean
  82. default n
  83. help
  84. config ADK_KERNEL_DEBUG_WITH_KGDB
  85. prompt "Enable remote kernel debugging using KGDB"
  86. boolean
  87. select ADK_KERNEL_DEBUG_KERNEL
  88. select ADK_KERNEL_DEBUG_INFO
  89. select ADK_KERNEL_KGDB
  90. select ADK_KERNEL_KGDB_SERIAL_CONSOLE
  91. select ADK_KERNEL_FRAME_POINTER
  92. depends on ADK_TARGET_ROOTFS_NFSROOT || \
  93. ADK_TARGET_ROOTFS_ARCHIVE || \
  94. ADK_TARGET_ROOTFS_YAFFS || \
  95. ADK_TARGET_ROOTFS_INITRAMFS || \
  96. ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK
  97. default n
  98. config ADK_KERNEL_OPROFILE
  99. prompt "Oprofile support"
  100. tristate
  101. select ADK_KERNEL_PROFILING
  102. depends on !ADK_LINUX_M68K
  103. default m if ADK_PACKAGE_OPROFILE
  104. default n
  105. help
  106. use oprofile package to make use of the kernel support.
  107. config ADK_KERNEL_KALLSYMS
  108. prompt "Support for symbol names in OOPS"
  109. boolean
  110. default n
  111. help
  112. Load all symbols to the kernel.
  113. endmenu