Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/890
-gerrit
commit cf2748dfffc75ca94e5397e59e549c1e451b9dcd Author: Patrick Georgi patrick.georgi@secunet.com Date: Thu Apr 12 15:23:58 2012 +0200
lint: tighten whitespace check some more
Don't test executable files nor object files, even if the former might render the test useless on win32 (executable bit isn't well defined there).
Change-Id: Ifb6fc83243289d266f439316c14b6b009f8da5fc Signed-off-by: Patrick Georgi patrick.georgi@secunet.com --- util/lint/lint-stable-003-whitespace | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace index a5ca540..6869a44 100755 --- a/util/lint/lint-stable-003-whitespace +++ b/util/lint/lint-stable-003-whitespace @@ -20,6 +20,7 @@
LC_ALL=C export LC_ALL find src util -name .svn -type d -prune -o \ + -perm +111 -prune -o \ -name .git -type d -prune -o \ -name README -prune -o \ -name LICENSE -prune -o \ @@ -27,6 +28,7 @@ find src util -name .svn -type d -prune -o \ -name COPYING -prune -o \ -name *.txt -prune -o \ -name *.exe -prune -o \ + -name *.o -prune -o \ -name microcode-*.h -prune -o \ -name *.?_shipped -prune -o \ -name *.[18] -prune -o \