diff options
author | Martin Roth <martinroth@google.com> | 2017-09-01 09:22:43 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-09-13 18:54:10 +0000 |
commit | 7e464dcb85354e22e733d94ef2b3e2c77fca22dc (patch) | |
tree | 82a665a7825dde2c5e7f0cb85aa918175bb7066f /util/lint | |
parent | a097fb8fff28232e77aa8398edcb7810bbd72b44 (diff) | |
download | coreboot-7e464dcb85354e22e733d94ef2b3e2c77fca22dc.tar.xz |
util/lint: Exclude external payloads from coreboot lowercase check
Change-Id: I70bbf37fad67fd9bda5724811f4bbdcc53779a42
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/21321
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'util/lint')
-rwxr-xr-x | util/lint/lint-stable-021-coreboot-lowercase | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/lint-stable-021-coreboot-lowercase b/util/lint/lint-stable-021-coreboot-lowercase index ef83a66cd9..82e2dd4160 100755 --- a/util/lint/lint-stable-021-coreboot-lowercase +++ b/util/lint/lint-stable-021-coreboot-lowercase @@ -16,7 +16,7 @@ LC_ALL=C export LC_ALL -EXCLUDE='^3rdparty/\|util/crossgcc/xgcc\|Binary file\|coreboot\|COREBOOT\|CorebootPayload\|CorebootModule\|minnowboard.org/Coreboot\|.*\.patch$\|CorebootBdsLib' +EXCLUDE='^3rdparty/\|util/crossgcc/xgcc\|Binary file\|coreboot\|COREBOOT\|CorebootPayload\|CorebootModule\|minnowboard.org/Coreboot\|.*\.patch$\|CorebootBdsLib\|^payloads/external' # Use git grep if the code is in a git repo, otherwise use grep. if [ -n "$(command -v git)" ] && [ -d .git ]; then |