diff options
author | Martin Roth <gaumless@gmail.com> | 2023-08-04 12:24:24 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-08-14 15:14:45 +0000 |
commit | f362bbd5c7ce5d96f4bed3adee9a8f3ccc2728e8 (patch) | |
tree | fb7b7d825286201c1888eb3643caf7198405f944 /src/southbridge | |
parent | 9802f1ee546478eec5dd94817ec9b0070e7ae23d (diff) |
commonlib,console,nb,sb,security: Add SPDX licenses to Makefiles
To help identify the licenses of the various files contained in the
coreboot source, we've added SPDX headers to the top of all of the
.c and .h files. This extends that practice to Makefiles.
Any file in the coreboot project without a specific license is bound
to the license of the overall coreboot project, GPL Version 2.
This patch adds the GPL V2 license identifier to the top of all
makefiles in the commonlib, console, northbridge, security, and
southbridge directories that don't already have an SPDX license line
at the top.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I02804a10d0b0355e41271a035613d9f3dfb122f8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68985
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/southbridge')
-rw-r--r-- | src/southbridge/amd/common/Makefile.inc | 2 | ||||
-rw-r--r-- | src/southbridge/intel/i82870/Makefile.inc | 2 | ||||
-rw-r--r-- | src/southbridge/ricoh/rl5c476/Makefile.inc | 2 | ||||
-rw-r--r-- | src/southbridge/ti/pci1x2x/Makefile.inc | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/src/southbridge/amd/common/Makefile.inc b/src/southbridge/amd/common/Makefile.inc index e086dc3a20..ce8b3d41b5 100644 --- a/src/southbridge/amd/common/Makefile.inc +++ b/src/southbridge/amd/common/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON) += amd_pci_util.c diff --git a/src/southbridge/intel/i82870/Makefile.inc b/src/southbridge/intel/i82870/Makefile.inc index d6ae171926..83ebca5af2 100644 --- a/src/southbridge/intel/i82870/Makefile.inc +++ b/src/southbridge/intel/i82870/Makefile.inc @@ -1,3 +1,5 @@ +## SPDX-License-Identifier: GPL-2.0-only + ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_I82870),y) ramstage-y += ioapic.c diff --git a/src/southbridge/ricoh/rl5c476/Makefile.inc b/src/southbridge/ricoh/rl5c476/Makefile.inc index 3fa232f1f8..24e84d24e7 100644 --- a/src/southbridge/ricoh/rl5c476/Makefile.inc +++ b/src/southbridge/ricoh/rl5c476/Makefile.inc @@ -1,3 +1,5 @@ +## SPDX-License-Identifier: GPL-2.0-only + ifeq ($(CONFIG_SOUTHBRIDGE_RICOH_RL5C476),y) ramstage-y += rl5c476.c diff --git a/src/southbridge/ti/pci1x2x/Makefile.inc b/src/southbridge/ti/pci1x2x/Makefile.inc index 4f2a3d3ec9..05e57add48 100644 --- a/src/southbridge/ti/pci1x2x/Makefile.inc +++ b/src/southbridge/ti/pci1x2x/Makefile.inc @@ -1,3 +1,5 @@ +## SPDX-License-Identifier: GPL-2.0-only + ifeq ($(CONFIG_SOUTHBRIDGE_TI_PCI1X2X),y) ramstage-y += pci1x2x.c |