diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2022-08-30 11:44:24 -0600 |
---|---|---|
committer | Raul Rangel <rrangel@chromium.org> | 2022-08-30 19:04:56 +0000 |
commit | ac9f36e71e7b0bf818532fdafce28247d386193e (patch) | |
tree | 10101ebd7815f4d76f6338b3553e0033b9fff63b /src/mainboard/google/skyrim | |
parent | d0777c976aa4cfdd391ad9d18d03fdb8be9eebb8 (diff) |
mb/google/skyrim: Fix APCB_SBR_D5.gen build rules
CB:66978 introduced an incorrect condition to check for the presence of
SPD binaries to be injected into APCB_SBR_D5.gen. This caused the SPDs
to be not injected into the APCB and hence the system fails to boot. Fix
it by updating the path of the SPD binaries correctly.
BUG=b:244173966
TEST=Build and boot to OS in Skyrim.
Change-Id: I5efa634fafdcc4769dfad5f533d5512e7c03644f
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67210
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/google/skyrim')
-rw-r--r-- | src/mainboard/google/skyrim/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/skyrim/Makefile.inc b/src/mainboard/google/skyrim/Makefile.inc index 0bea8a00ba..fb194d8b03 100644 --- a/src/mainboard/google/skyrim/Makefile.inc +++ b/src/mainboard/google/skyrim/Makefile.inc @@ -19,7 +19,7 @@ CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/in ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/APCB_SBR_D5.bin),) $(info APCB sources present.) -ifneq ($(wildcard $(SPD_SOURCES)),) +ifneq ($(wildcard $(top)/$(SPD_SOURCES)),) LIB_SPD_DEPS = $(SPD_SOURCES) |