Memory SPD files for each variant are now stored in the variant's mb/google/volteer/variants/<variant_name>/spd directory instead of storing them in mb/google/volteer/spd. This change moves SPDs to where they are needed and changes the makefile to look for them in their new locations. BUG=b:156126658 TEST="emerge-volteer coreboot chromeos-bootimage", flash and boot a proto2 SKU4 to the kernel. Change-Id: I759c979027477a2a4c5489a6b12278799488d6e7 Signed-off-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41184 Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
29 lines
660 B
Makefile
29 lines
660 B
Makefile
##
|
|
##
|
|
##
|
|
## SPDX-License-Identifier: GPL-2.0-or-later
|
|
##
|
|
|
|
bootblock-y += bootblock.c
|
|
|
|
romstage-$(CONFIG_CHROMEOS) += chromeos.c
|
|
romstage-y += romstage.c
|
|
|
|
ramstage-$(CONFIG_CHROMEOS) += chromeos.c
|
|
ramstage-y += ec.c
|
|
ramstage-y += mainboard.c
|
|
|
|
smm-y += smihandler.c
|
|
|
|
verstage-$(CONFIG_CHROMEOS) += chromeos.c
|
|
|
|
subdirs-y += variants/baseboard
|
|
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include
|
|
|
|
VARIANT_DIR:=$(call strip_quotes,$(CONFIG_VARIANT_DIR))
|
|
subdirs-y += variants/$(VARIANT_DIR)
|
|
subdirs-y += variants/$(VARIANT_DIR)/spd
|
|
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/include
|
|
|
|
subdirs-y += spd
|