Move dmi.c code to common/fsp to be shared among different SOCs. BUG=b:184124605 Change-Id: I46071556bbbbf6435d9e3724bba19e102bd02535 Signed-off-by: Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52746 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
10 lines
255 B
Makefile
10 lines
255 B
Makefile
ifeq ($(CONFIG_PLATFORM_USES_FSP2_0),y)
|
|
romstage-y += fsp_reset.c
|
|
ramstage-y += fsp_reset.c
|
|
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += fsp-acpi.c
|
|
ramstage-$(CONFIG_SOC_AMD_COMMON_FSP_DMI_TABLES) += dmi.c
|
|
|
|
subdirs-y += ./*
|
|
|
|
endif # CONFIG_PLATFORM_USES_FSP2_0
|