Igor Opaniuk | 1c93c2b | 2016-11-03 13:27:28 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | CHECKPATCH=checkpatch.pl |
| 4 | # checkpatch.pl will ignore the following paths |
| 5 | CHECKPATCH_IGNORE=$(echo core/lib/lib{fdt,tomcrypt} lib/lib{png,utils,zlib}) |
| 6 | _CP_EXCL=$(for p in $CHECKPATCH_IGNORE; do echo ":(exclude)$p" ; done) |
| 7 | |
| 8 | function _checkpatch() { |
| 9 | $CHECKPATCH --quiet --ignore FILE_PATH_CHANGES \ |
| 10 | --ignore GERRIT_CHANGE_ID --no-tree - |
| 11 | } |
| 12 | |
| 13 | function checkpatch() { |
| 14 | git show --oneline --no-patch $1 |
| 15 | git format-patch -1 $1 --stdout -- $_CP_EXCL . | _checkpatch |
| 16 | } |
| 17 | |
| 18 | function checkstaging() { |
| 19 | git diff --cached -- . $_CP_EXCL | _checkpatch |
| 20 | } |
| 21 | |
| 22 | function checkworking() { |
| 23 | git diff -- . $_CP_EXCL | _checkpatch |
| 24 | } |
| 25 | |
| 26 | function checkdiff() { |
| 27 | git diff $1...$2 -- . $_CP_EXCL | _checkpatch |
| 28 | } |
| 29 | |