diff options
Diffstat (limited to 'util')
-rwxr-xr-x | util/gitconfig/pre-commit | 3 | ||||
-rwxr-xr-x | util/lint/lint-006-checkpatch | 23 |
2 files changed, 25 insertions, 1 deletions
diff --git a/util/gitconfig/pre-commit b/util/gitconfig/pre-commit index ccf78d376c..70cd6eade1 100755 --- a/util/gitconfig/pre-commit +++ b/util/gitconfig/pre-commit @@ -1,2 +1,3 @@ #!/bin/sh -exec %MAKE% lint-stable +%MAKE% lint-stable +git diff --cached | util/lint/checkpatch.pl --no-signoff -q - diff --git a/util/lint/lint-006-checkpatch b/util/lint/lint-006-checkpatch new file mode 100755 index 0000000000..9d9d96ebc6 --- /dev/null +++ b/util/lint/lint-006-checkpatch @@ -0,0 +1,23 @@ +#!/bin/sh +# This file is part of the coreboot project. +# +# Copyright 2015 Google Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# DESCR: Checkpatch on all .c and .h files in the tree + +LC_ALL=C export LC_ALL +util/lint/checkpatch.pl --show-types --file $( git ls-files \*.[ch] | \ + grep -v ^payloads/libpayload/util/kconfig | \ + grep -v ^payloads/libpayload/curses/PDCurses-3.4 | \ + grep -v ^payloads/coreinfo/util/kconfig | \ + grep -v ^util/kconfig \ + ) |