Kconfig.debug 717 B

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