Kconfig.debug 791 B

12345678910111213141516171819202122232425
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config EARLY_PRINTK
  4. bool "Early printk" if EXPERT && DEBUG_KERNEL
  5. default y
  6. help
  7. Write kernel log output directly via the hypervisor console.
  8. This is useful for kernel debugging when your machine crashes very
  9. early before the console code is initialized. For normal operation
  10. it is not recommended because it looks ugly and doesn't cooperate
  11. with klogd/syslogd. You should normally N here,
  12. unless you want to debug such a crash.
  13. config TILE_HVGLUE_TRACE
  14. bool "Provide wrapper functions for hypervisor ABI calls"
  15. default n
  16. help
  17. Provide wrapper functions for the hypervisor ABI calls
  18. defined in arch/tile/kernel/hvglue.S. This allows tracing
  19. mechanisms, etc., to have visibility into those calls.
  20. endmenu