Kconfig.debug 917 B

123456789101112131415161718192021222324252627
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config LD_NO_RELAX
  4. bool "Disable linker relaxation"
  5. default n
  6. help
  7. Enable this function to disable link-time optimizations.
  8. The default linker behavior is to combine identical literal
  9. values to reduce code size and remove unnecessary overhead from
  10. assembler-generated 'longcall' sequences.
  11. Enabling this option improves the link time but increases the
  12. code size, and possibly execution time.
  13. config S32C1I_SELFTEST
  14. bool "Perform S32C1I instruction self-test at boot"
  15. default y
  16. help
  17. Enable this option to test S32C1I instruction behavior at boot.
  18. Correct operation of this instruction requires some cooperation from hardware
  19. external to the processor (such as bus bridge, bus fabric, or memory controller).
  20. It is easy to make wrong hardware configuration, this test should catch it early.
  21. Say 'N' on stable hardware.
  22. endmenu