Kconfig.debug 988 B

123456789101112131415161718192021222324252627282930313233
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config FRAME_POINTER
  4. bool
  5. default y
  6. config DEBUG_STACK_USAGE
  7. bool "Enable stack utilization instrumentation"
  8. depends on DEBUG_KERNEL
  9. help
  10. Enables the display of the minimum amount of free stack which each
  11. task has ever had available in the sysrq-T output.
  12. config EARLY_PRINTK
  13. bool "Early printk support"
  14. default y
  15. help
  16. Say Y here if you want to have an early console using the
  17. earlyprintk=<name>[,<addr>][,<options>] kernel parameter. It
  18. is assumed that the early console device has been initialised
  19. by the boot loader prior to starting the Linux kernel.
  20. config PID_IN_CONTEXTIDR
  21. bool "Write the current PID to the CONTEXTIDR register"
  22. help
  23. Enabling this option causes the kernel to write the current PID to
  24. the CONTEXTIDR register, at the expense of some additional
  25. instructions during context switch. Say Y here only if you are
  26. planning to use hardware trace tools with this kernel.
  27. endmenu