Config.in.debug 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. default n
  53. help
  54. use oprofile package to make use of the kernel support.
  55. endmenu