Kconfig.debug 594 B

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