Kconfig 789 B

1234567891011121314151617181920212223
  1. config WARN_MISSING_DOCUMENTS
  2. bool "Warn if there's a missing documentation file"
  3. depends on COMPILE_TEST
  4. help
  5. It is not uncommon that a document gets renamed.
  6. This option makes the Kernel to check for missing dependencies,
  7. warning when something is missing. Works only if the Kernel
  8. is built from a git tree.
  9. If unsure, select 'N'.
  10. config WARN_ABI_ERRORS
  11. bool "Warn if there are errors at ABI files"
  12. depends on COMPILE_TEST
  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'.