Linux Audio

Check our new training course

Loading...
v6.13.7
 1if COMPILE_TEST
 2
 3menu "Documentation"
 4
 5config WARN_MISSING_DOCUMENTS
 6	bool "Warn if there's a missing documentation file"
 7	help
 8	  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 Kernel
11	  is built from a git tree.
12
13	  If unsure, select 'N'.
14
15config WARN_ABI_ERRORS
16	bool "Warn if there are errors at ABI files"
17	help
18	  The files under Documentation/ABI should follow what's
19	  described at Documentation/ABI/README. Yet, as they're manually
20	  written, it would be possible that some of those files would
21	  have errors that would break them for being parsed by
22	  scripts/get_abi.pl. Add a check to verify them.
23
24	  If unsure, select 'N'.
25
26endmenu
27
28endif
v5.4
 
 
 
 
 1config WARN_MISSING_DOCUMENTS
 
 
 
 
 
 
 
 
 2
 3	bool "Warn if there's a missing documentation file"
 4	depends on COMPILE_TEST
 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
11	   If unsure, select 'N'.
12
 
13