Attention is currently required from: Martin Roth.
Hello Martin Roth,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/69918
to review the following change.
Change subject: util/lint: Ignore fmd files when evaluating Kconfig symbols ......................................................................
util/lint: Ignore fmd files when evaluating Kconfig symbols
Signed-off-by: Martin Roth martin.roth@amd.corp-partner.google.com Change-Id: I5e3ff8ee10fdd3514033e72bd0c2664a4b2f5310 --- M util/lint/kconfig_lint 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/18/69918/1
diff --git a/util/lint/kconfig_lint b/util/lint/kconfig_lint index f2a732d..9c9a8a9 100755 --- a/util/lint/kconfig_lint +++ b/util/lint/kconfig_lint @@ -34,7 +34,7 @@ my $exclude_dirs_and_files = '^build/|^coreboot-builds/|^configs/|^util/|^.git/|^payloads|^Documentation|^3rdparty' . '|' . # directories to exclude when searching for used symbols - '.config|.txt$|.tex$|.tags|/kconfig.h'; #files to exclude when looking for symbols + '.config|.txt$|.tex$|.tags|/kconfig.h|.fmd'; #files to exclude when looking for symbols my $payload_files_to_check='payloads/Makefile.inc payloads/external/Makefile.inc'; my $config_file = ""; # name of config file to load symbol values from. my @wholeconfig; # document the entire kconfig structure