summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/Makefile.inc
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2021-01-20 11:05:38 +0800
committerFelix Held <felix-coreboot@felixheld.de>2021-01-25 17:08:24 +0000
commit13d6a4647d3c46db88a295bfa6cf45608ada8a9d (patch)
treec995a0c5061595cf274369321c7b98eb5f1d61ec /src/soc/amd/picasso/Makefile.inc
parent08bd2077bf89da9e4d1cd1f42952975a07e3fd36 (diff)
downloadcoreboot-13d6a4647d3c46db88a295bfa6cf45608ada8a9d.tar.gz
coreboot-13d6a4647d3c46db88a295bfa6cf45608ada8a9d.tar.bz2
coreboot-13d6a4647d3c46db88a295bfa6cf45608ada8a9d.zip
soc/amd/picasso: Use makefile variable to locate UCODE
Change the hardcoded location of microcode patches to using FIRMWARE_LOCATION. Change-Id: Iae3d159aa5413a416c54935ab7a809d0f4ff776f Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49734 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso/Makefile.inc')
-rw-r--r--src/soc/amd/picasso/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/Makefile.inc b/src/soc/amd/picasso/Makefile.inc
index 8631dfd6b075..5dac1f695025 100644
--- a/src/soc/amd/picasso/Makefile.inc
+++ b/src/soc/amd/picasso/Makefile.inc
@@ -303,6 +303,6 @@ endif
$(call strip_quotes,$(CONFIG_FSP_M_CBFS))-options := -b $(CONFIG_FSP_M_ADDR)
-cpu_microcode_bins += $(wildcard 3rdparty/amd_blobs/picasso/PSP/UcodePatch_*.bin)
+cpu_microcode_bins += $(wildcard ${FIRMWARE_LOCATION}/UcodePatch_*.bin)
endif # ($(CONFIG_SOC_AMD_PICASSO),y)