Config.in.debug 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_QUIET_KERNEL
  21. prompt "Make bootup quiet without messages from the kernel"
  22. bool
  23. default n
  24. help
  25. Make bootup quiet without messages from the kernel.
  26. config ADK_KERNEL_MAGIC_SYSRQ
  27. prompt "Magic BREAK sequence"
  28. bool
  29. default y
  30. help
  31. Enable this to be able to use the Magic SysRq functions,
  32. probably using a serial console break.
  33. config ADK_KERNEL_DEBUG_FS
  34. prompt "Debug Filesystem"
  35. bool
  36. default n
  37. help
  38. debugfs is a virtual file system that kernel developers use to put
  39. debugging files into. Enable this option to be able to read and
  40. write to these files.
  41. config ADK_KERNEL_DEBUG_WITH_KGDB
  42. boolean
  43. prompt "Enable remote kernel debugging using KGDB"
  44. depends on ADK_TARGET_ROOTFS_NFSROOT || \
  45. ADK_TARGET_ROOTFS_EXT2_BLOCK || \
  46. ADK_TARGET_ROOTFS_YAFFS || \
  47. ADK_TARGET_ROOTFS_EXT2
  48. default n
  49. select ADK_KERNEL_DEBUG_KERNEL
  50. select ADK_KERNEL_DEBUG_INFO
  51. select ADK_KERNEL_KGDB
  52. select ADK_KERNEL_KGDB_SERIAL_CONSOLE
  53. select ADK_KERNEL_FRAME_POINTER
  54. config ADK_KPACKAGE_KMOD_OPROFILE
  55. tristate
  56. prompt "kernel support for oprofile"
  57. select ADK_KERNEL_PROFILING
  58. depends on !ADK_LINUX_CRIS_FOXBOARD
  59. default n
  60. help
  61. use oprofile package to make use of the kernel support.
  62. endmenu