Checkpatch should be 007. Change-Id: Ib71c50ad1a63a3a743391cd8fea9f79cd08ef6f3 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12901 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			859 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			859 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/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 \
 | |
| 	)
 |