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 cpu directory that don't already have an SPDX license line at the top. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I3033f2a9eebc75220f7666325857b3ddd60c8f75 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68979 Reviewed-by: Tim Crawford <tcrawford@system76.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
ramstage-y += haswell_init.c
|
|
|
|
romstage-y += romstage.c
|
|
romstage-y += ../car/romstage.c
|
|
|
|
ramstage-y += acpi.c
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
|
|
|
|
smm-y += finalize.c
|
|
|
|
bootblock-y += ../car/non-evict/cache_as_ram.S
|
|
bootblock-y += ../car/bootblock.c
|
|
bootblock-y += ../../x86/early_reset.S
|
|
bootblock-y += bootblock.c
|
|
|
|
postcar-y += ../car/non-evict/exit_car.S
|
|
|
|
subdirs-y += ../microcode
|
|
subdirs-y += ../turbo
|
|
|
|
ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y)
|
|
# Haswell ULT/ULX
|
|
cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-45-*)
|
|
ifeq ($(CONFIG_SOC_INTEL_BROADWELL),y)
|
|
# Broadwell ULT/ULX
|
|
cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-3d-*)
|
|
endif
|
|
else
|
|
# Haswell Trad
|
|
cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-3c-*)
|
|
# Crystal Well (Trad)
|
|
cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-46-*)
|
|
# Broadwell Trad
|
|
cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-47-*)
|
|
endif
|