Config.in.debug 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. menu "Kernel debugging"
  2. config ADK_KERNEL_PROFILING
  3. boolean
  4. default n
  5. config ADK_KERNEL_DEBUG_KERNEL
  6. boolean
  7. default n
  8. config ADK_KERNEL_DEBUG_INFO
  9. boolean
  10. default n
  11. config ADK_KERNEL_KGDB
  12. boolean
  13. default n
  14. config ADK_KERNEL_KGDB_SERIAL_CONSOLE
  15. boolean
  16. default n
  17. config ADK_KERNEL_FRAME_POINTER
  18. boolean
  19. default n
  20. config ADK_KERNEL_MAGIC_SYSRQ
  21. prompt "Magic BREAK sequence"
  22. bool
  23. default y
  24. help
  25. Enable this to be able to use the Magic SysRq functions,
  26. probably using a serial console break.
  27. config ADK_KERNEL_DEBUG_FS
  28. prompt "Debug Filesystem"
  29. bool
  30. default n
  31. help
  32. debugfs is a virtual file system that kernel developers use to put
  33. debugging files into. Enable this option to be able to read and
  34. write to these files.
  35. config ADK_KERNEL_DEBUG_WITH_KGDB
  36. boolean
  37. prompt "Enable remote kernel debugging using KGDB"
  38. depends on ADK_TARGET_ROOTFS_NFSROOT || \
  39. ADK_TARGET_ROOTFS_EXT2_BLOCK || \
  40. ADK_TARGET_ROOTFS_YAFFS || \
  41. ADK_TARGET_ROOTFS_EXT2
  42. default n
  43. select ADK_KERNEL_DEBUG_KERNEL
  44. select ADK_KERNEL_DEBUG_INFO
  45. select ADK_KERNEL_KGDB
  46. select ADK_KERNEL_KGDB_SERIAL_CONSOLE
  47. select ADK_KERNEL_FRAME_POINTER
  48. config ADK_KPACKAGE_KMOD_OPROFILE
  49. tristate
  50. prompt "kernel support for oprofile"
  51. select ADK_KERNEL_PROFILING
  52. depends on !ADK_LINUX_CRIS_FOXBOARD
  53. default n
  54. help
  55. use oprofile package to make use of the kernel support.
  56. endmenu