29 lines · plain
1if COMPILE_TEST2 3menu "Documentation"4 5config WARN_MISSING_DOCUMENTS6 bool "Warn if there's a missing documentation file"7 help8 It is not uncommon that a document gets renamed.9 This option makes the Kernel to check for missing dependencies,10 warning when something is missing. Works only if the Kernel11 is built from a git tree.12 13 If unsure, select 'N'.14 15config WARN_ABI_ERRORS16 bool "Warn if there are errors at ABI files"17 help18 The files under Documentation/ABI should follow what's19 described at Documentation/ABI/README. Yet, as they're manually20 written, it would be possible that some of those files would21 have errors that would break them for being parsed by22 scripts/get_abi.pl. Add a check to verify them.23 24 If unsure, select 'N'.25 26endmenu27 28endif29