Instead of hardcoding paths to the executables, use the version in the path. This allows the scripts to work on more systems, and allows the binary version to be changed more easily if needed. Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: Ifcc56aa21092cd3866eacb6a02d198110ec6051d Reviewed-on: https://review.coreboot.org/c/coreboot/+/48904 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			348 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			348 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env sh
 | |
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| #
 | |
| # DESCR: Check that files have license headers
 | |
| 
 | |
| # Top level
 | |
| util/lint/lint-000-license-headers "src/acpi src/arch src/commonlib src/console \
 | |
| 	src/cpu src/device src/drivers src/ec src/mainboard src/northbridge \
 | |
| 	src/security src/soc src/southbridge src/superio tests payloads/coreinfo"
 |