diff options
author | Martin Roth <martin.roth@amd.com> | 2022-11-22 14:47:12 -0700 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-11-24 17:52:07 +0000 |
commit | b357e53bff41d1277d37f64460205825b6e06ac4 (patch) | |
tree | e4f24f85308b5cb64d4835328c64afb89f29bee5 /util | |
parent | 705ebbea04778cef3b51bc7a06b216fd73a193d2 (diff) |
util/lint: Ignore fmd files when evaluating Kconfig symbols
Signed-off-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Change-Id: I5e3ff8ee10fdd3514033e72bd0c2664a4b2f5310
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69918
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'util')
-rwxr-xr-x | util/lint/kconfig_lint | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/kconfig_lint b/util/lint/kconfig_lint index f2a732d92b..9c9a8a926d 100755 --- a/util/lint/kconfig_lint +++ b/util/lint/kconfig_lint @@ -34,7 +34,7 @@ my $warnings_found = 0; 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 |