Kconfig.debug 758 B

1234567891011121314151617181920212223242526
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config FRAME_POINTER
  4. bool
  5. default y
  6. config EARLY_PRINTK
  7. bool "Early printk support"
  8. default y
  9. help
  10. Say Y here if you want to have an early console using the
  11. earlyprintk=<name>[,<addr>][,<options>] kernel parameter. It
  12. is assumed that the early console device has been initialised
  13. by the boot loader prior to starting the Linux kernel.
  14. config PID_IN_CONTEXTIDR
  15. bool "Write the current PID to the CONTEXTIDR register"
  16. help
  17. Enabling this option causes the kernel to write the current PID to
  18. the CONTEXTIDR register, at the expense of some additional
  19. instructions during context switch. Say Y here only if you are
  20. planning to use hardware trace tools with this kernel.
  21. endmenu