Mauro Carvalho Chehab | b1663d7 | 2019-06-04 09:26:27 -0300 | [diff] [blame] | 1 | config 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 | |
Mauro Carvalho Chehab | 75442fb | 2020-10-30 08:40:45 +0100 | [diff] [blame] | 13 | config WARN_ABI_ERRORS |
| 14 | bool "Warn if there are errors at ABI files" |
| 15 | depends on COMPILE_TEST |
| 16 | help |
| 17 | The files under Documentation/ABI should follow what's |
| 18 | described at Documentation/ABI/README. Yet, as they're manually |
| 19 | written, it would be possible that some of those files would |
| 20 | have errors that would break them for being parsed by |
| 21 | scripts/get_abi.pl. Add a check to verify them. |
Mauro Carvalho Chehab | b1663d7 | 2019-06-04 09:26:27 -0300 | [diff] [blame] | 22 | |
Mauro Carvalho Chehab | 75442fb | 2020-10-30 08:40:45 +0100 | [diff] [blame] | 23 | If unsure, select 'N'. |