Kconfig.debug 612 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. 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. depends on SERIAL_UARTLITE_CONSOLE || SERIAL_8250_CONSOLE
  10. default n
  11. help
  12. This option turns on/off early printk messages to console.
  13. First Uartlite node is taken.
  14. config HEART_BEAT
  15. bool "Heart beat function for kernel"
  16. default n
  17. help
  18. This option turns on/off heart beat kernel functionality.
  19. First GPIO node is taken.
  20. endmenu