Kconfig.debug 814 B

12345678910111213141516171819202122232425262728
  1. menu "Kernel hacking"
  2. config TRACE_IRQFLAGS_SUPPORT
  3. def_bool y
  4. source "lib/Kconfig.debug"
  5. config DEBUG_STACK_USAGE
  6. bool "Enable stack utilization instrumentation"
  7. depends on DEBUG_KERNEL
  8. help
  9. Enables the display of the minimum amount of free stack which each
  10. task has ever had available in the sysrq-T and sysrq-P debug output.
  11. This option will slow down process creation somewhat.
  12. config EARLY_PRINTK
  13. bool "Activate early kernel debugging"
  14. default y
  15. select SERIAL_CORE_CONSOLE
  16. depends on SERIAL_ALTERA_JTAGUART_CONSOLE || SERIAL_ALTERA_UART_CONSOLE
  17. help
  18. Enable early printk on console
  19. This is useful for kernel debugging when your machine crashes very
  20. early before the console code is initialized.
  21. You should normally say N here, unless you want to debug such a crash.
  22. endmenu