Config.in.debug 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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_MAGIC_SYSRQ
  21. prompt "Magic BREAK sequence"
  22. boolean
  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. boolean
  30. default y
  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. prompt "Enable remote kernel debugging using KGDB"
  37. boolean
  38. select ADK_KERNEL_DEBUG_KERNEL
  39. select ADK_KERNEL_DEBUG_INFO
  40. select ADK_KERNEL_KGDB
  41. select ADK_KERNEL_KGDB_SERIAL_CONSOLE
  42. select ADK_KERNEL_FRAME_POINTER
  43. depends on ADK_TARGET_ROOTFS_NFSROOT || \
  44. ADK_TARGET_ROOTFS_EXT2_BLOCK || \
  45. ADK_TARGET_ROOTFS_YAFFS || \
  46. ADK_TARGET_ROOTFS_EXT2
  47. default n
  48. config ADK_KPACKAGE_KMOD_OPROFILE
  49. prompt "kernel support for oprofile"
  50. tristate
  51. select ADK_KERNEL_PROFILING
  52. depends on !ADK_TARGET_SYSTEM_FOXBOARD_LX
  53. default n
  54. help
  55. use oprofile package to make use of the kernel support.
  56. endmenu