0a3d4e0ca0
This also drops individual copyright notices, all mentioned authors in that part of the tree are already listed in AUTHORS. Change-Id: Ic5eddc961d015328e5a90994b7963e7af83cddd3 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39279 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
25 lines
1,023 B
Bash
Executable file
25 lines
1,023 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
|
|
util/lint/lint-000-license-headers "src/superio" SPDX_ONLY
|
|
util/lint/lint-000-license-headers "src/arch/arm" SPDX_ONLY
|
|
util/lint/lint-000-license-headers "src/arch/arm64" SPDX_ONLY
|
|
|
|
# Top level
|
|
util/lint/lint-000-license-headers "src/arch/ppc64 \
|
|
src/arch/riscv src/arch/x86 src/commonlib src/console \
|
|
src/cpu src/device src/ec src/mainboard src/northbridge src/soc \
|
|
src/southbridge"
|
|
|
|
# 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"
|