Kconfig.debug 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config DEBUG_TLB_SANITY
  4. bool "Debug TLB sanity"
  5. depends on DEBUG_KERNEL && MMU
  6. help
  7. Enable this to turn on TLB sanity check on each entry to userspace.
  8. This check can spot missing TLB invalidation/wrong PTE permissions/
  9. premature page freeing.
  10. If unsure, say N.
  11. config LD_NO_RELAX
  12. bool "Disable linker relaxation"
  13. default y
  14. help
  15. Enable this function to disable link-time optimizations.
  16. The default linker behavior is to combine identical literal
  17. values to reduce code size and remove unnecessary overhead from
  18. assembler-generated 'longcall' sequences.
  19. Enabling this option improves the link time but increases the
  20. code size, and possibly execution time.
  21. config S32C1I_SELFTEST
  22. bool "Perform S32C1I instruction self-test at boot"
  23. default y
  24. help
  25. Enable this option to test S32C1I instruction behavior at boot.
  26. Correct operation of this instruction requires some cooperation from hardware
  27. external to the processor (such as bus bridge, bus fabric, or memory controller).
  28. It is easy to make wrong hardware configuration, this test should catch it early.
  29. Say 'N' on stable hardware.
  30. endmenu