Kconfig.debug 637 B

1234567891011121314151617181920212223242526272829
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. menu "Kernel hacking"
  4. config TRACE_IRQFLAGS_SUPPORT
  5. def_bool y
  6. source "lib/Kconfig.debug"
  7. config EARLY_PRINTK
  8. bool "Early printk function for kernel"
  9. default n
  10. help
  11. This option turns on/off early printk messages to console.
  12. First Uartlite node is taken.
  13. config HEART_BEAT
  14. bool "Heart beat function for kernel"
  15. default n
  16. help
  17. This option turns on/off heart beat kernel functionality.
  18. First GPIO node is taken.
  19. config DEBUG_BOOTMEM
  20. depends on DEBUG_KERNEL
  21. bool "Debug BOOTMEM initialization"
  22. endmenu