[coreboot-gerrit] New patch to review for coreboot: kconfig_lint: exclude payloads/external/tint from search

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Wed Nov 16 05:18:12 CET 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17443

-gerrit

commit 69c0907465595fb7edbee354c8414d384dff2939
Author: Martin Roth <martinroth at google.com>
Date:   Tue Nov 15 21:08:42 2016 -0700

    kconfig_lint: exclude payloads/external/tint from search
    
    Don't look for symbols in payloads/external/tint.  It doesn't use the
    kconfig symbols from the coreboot Kconfig tree.
    
    Change-Id: I6f28dc7dee040b8061fa5644066f3613367b6d84
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 util/lint/kconfig_lint | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/lint/kconfig_lint b/util/lint/kconfig_lint
index 064f3db..143d4e7 100755
--- a/util/lint/kconfig_lint
+++ b/util/lint/kconfig_lint
@@ -45,7 +45,7 @@ my $root_dir       = "src";           # Directory of the top level Kconfig file
 my $errors_found   = 0;               # count of errors
 my $warnings_found = 0;
 my $exclude_dirs_and_files =
-  '^build/\|^coreboot-builds/\|^payloads/libpayload\|^payloads/coreinfo\|^configs/\|^util/\|^\.git/'
+  '^build/\|^coreboot-builds/\|^payloads/libpayload\|^payloads/coreinfo\|^payloads/external/tint\|^configs/\|^util/\|^\.git/'
   . '\|' .                            # directories to exclude when searching for used symbols
   '\.txt$\|\.tex$\|\.tags';           #files to exclude when looking for symbols
 my $config_file = "";                 # name of config file to load symbol values from.



More information about the coreboot-gerrit mailing list