Kconfig.debug 775 B

123456789101112131415161718192021222324252627
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config FRAME_POINTER
  4. bool
  5. default y
  6. config DEBUG_ERRORS
  7. bool "Verbose kernel error messages"
  8. depends on DEBUG_KERNEL
  9. help
  10. This option controls verbose debugging information which can be
  11. printed when the kernel detects an internal error. This debugging
  12. information is useful to kernel hackers when tracking down problems,
  13. but mostly meaningless to other people. It's safe to say Y unless
  14. you are concerned with the code size or don't want to see these
  15. messages.
  16. config DEBUG_STACK_USAGE
  17. bool "Enable stack utilization instrumentation"
  18. depends on DEBUG_KERNEL
  19. help
  20. Enables the display of the minimum amount of free stack which each
  21. task has ever had available in the sysrq-T output.
  22. endmenu