Kconfig.debug 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config EARLY_PRINTK
  4. bool "Early SCIF console support"
  5. config DEBUG_KERNEL_WITH_GDB_STUB
  6. bool "GDB Stub kernel debug"
  7. config SH64_PROC_TLB
  8. bool "Debug: report TLB fill/purge activity through /proc/tlb"
  9. depends on PROC_FS
  10. config SH64_PROC_ASIDS
  11. bool "Debug: report ASIDs through /proc/asids"
  12. depends on PROC_FS
  13. config SH64_SR_WATCH
  14. bool "Debug: set SR.WATCH to enable hardware watchpoints and trace"
  15. config POOR_MANS_STRACE
  16. bool "Debug: enable rudimentary strace facility"
  17. help
  18. This option allows system calls to be traced to the console. It also
  19. aids in detecting kernel stack underflow. It is useful for debugging
  20. early-userland problems (e.g. init incurring fatal exceptions.)
  21. config SH_ALPHANUMERIC
  22. bool "Enable debug outputs to on-board alphanumeric display"
  23. config SH_NO_BSS_INIT
  24. bool "Avoid zeroing BSS (to speed-up startup on suitable platforms)"
  25. config FRAME_POINTER
  26. bool "Compile the kernel with frame pointers"
  27. default y if KGDB
  28. help
  29. If you say Y here the resulting kernel image will be slightly larger
  30. and slower, but it will give very useful debugging information.
  31. If you don't debug the kernel, you can say N, but we may not be able
  32. to solve problems without frame pointers.
  33. endmenu