Kconfig 782 B

12345678910111213141516171819202122232425262728
  1. if COMPILE_TEST
  2. menu "Documentation"
  3. config WARN_MISSING_DOCUMENTS
  4. bool "Warn if there's a missing documentation file"
  5. help
  6. It is not uncommon that a document gets renamed.
  7. This option makes the Kernel to check for missing dependencies,
  8. warning when something is missing. Works only if the Kernel
  9. is built from a git tree.
  10. If unsure, select 'N'.
  11. config WARN_ABI_ERRORS
  12. bool "Warn if there are errors at ABI files"
  13. help
  14. The files under Documentation/ABI should follow what's
  15. described at Documentation/ABI/README. Yet, as they're manually
  16. written, it would be possible that some of those files would
  17. have errors that would break them for being parsed by
  18. scripts/get_abi.pl. Add a check to verify them.
  19. If unsure, select 'N'.
  20. endmenu
  21. endif