Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8419
-gerrit
commit 011cc94cf82b7b65807fcfbf8ca89f82721278d8 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Wed Feb 11 01:53:42 2015 +0100
lint/gitconfig: Enable checkpatch.pl checking of commits
Change-Id: I7cdf0692cf372986e411f4aba4691417b73c7511 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- util/gitconfig/pre-commit | 1 + util/lint/lint-006-checkpatch | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+)
diff --git a/util/gitconfig/pre-commit b/util/gitconfig/pre-commit index 8ab3e56..9a4f148 100755 --- a/util/gitconfig/pre-commit +++ b/util/gitconfig/pre-commit @@ -1,2 +1,3 @@ #!/bin/sh exec make lint-stable +exec 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 0000000..def32c6 --- /dev/null +++ b/util/lint/lint-006-checkpatch @@ -0,0 +1,22 @@ +#!/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. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# +# DESCR: Checkpatch on all .c and .h files in the tree + +LC_ALL=C export LC_ALL +util/lint/checkpatch.pl --show-types --ignore=C99_COMMENTS --file $( git ls-files *.[ch] )