Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I9241f96eed652c8ca72d4f4a94f860a875e55680 Reviewed-on: https://review.coreboot.org/c/coreboot/+/36177 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			817 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			817 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| # This file is part of the coreboot project.
 | |
| #
 | |
| # DESCR: Check that files have license headers
 | |
| 
 | |
| # Directories requiring SPDX Identifiers only
 | |
| util/lint/lint-000-license-headers "src/acpi" SPDX_ONLY
 | |
| 
 | |
| # Top level
 | |
| util/lint/lint-000-license-headers "src/arch src/commonlib src/console \
 | |
| 	src/cpu src/device src/ec src/mainboard src/northbridge src/soc \
 | |
| 	src/southbridge src/superio"
 | |
| 
 | |
| # src/drivers
 | |
| util/lint/lint-000-license-headers "src/drivers/ams src/drivers/aspeed src/drivers/dec src/drivers/elog \
 | |
| 	src/drivers/emulation src/drivers/gic src/drivers/ics src/drivers/ipmi src/drivers/maxim \
 | |
| 	src/drivers/parade src/drivers/ricoh src/drivers/sil src/drivers/ti src/drivers/usb src/drivers/xgi"
 | |
| 
 | |
| # src/security
 | |
| util/lint/lint-000-license-headers "src/security/vboot"
 |