summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/Makefile.inc
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2020-11-05 18:26:10 +0800
committerFelix Held <felix-coreboot@felixheld.de>2020-11-06 13:06:33 +0000
commitaf2efbb59b0d9b3fa1ac97b8cfa08754aebd9141 (patch)
tree6b1cc08bf1be4919404ac689f3479f621e93dc8e /src/soc/amd/picasso/Makefile.inc
parent795d73c6d851fde143041483af5dff7c448febe6 (diff)
downloadcoreboot-af2efbb59b0d9b3fa1ac97b8cfa08754aebd9141.tar.gz
coreboot-af2efbb59b0d9b3fa1ac97b8cfa08754aebd9141.tar.bz2
coreboot-af2efbb59b0d9b3fa1ac97b8cfa08754aebd9141.zip
amdfwtool: Use shell command to get depend file list
The amdfwtool is not available at the beginning of the building. So it may have error if it is missing. Change-Id: Id4db70986755cef8e98877c4e92841b25ced5452 Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47237 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/picasso/Makefile.inc')
-rw-r--r--src/soc/amd/picasso/Makefile.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/Makefile.inc b/src/soc/amd/picasso/Makefile.inc
index 5a88d0b68426..ffc1463b194d 100644
--- a/src/soc/amd/picasso/Makefile.inc
+++ b/src/soc/amd/picasso/Makefile.inc
@@ -242,7 +242,8 @@ endif
OPT_WHITELIST_FILE=$(call add_opt_prefix, $(PSP_WHITELIST_FILE), --whitelist)
# Add all the files listed in the config file
-DEP_FILES=$(shell $(AMDFWTOOL) --config $(CONFIG_AMDFW_CONFIG_FILE) --depend)
+POUND_SIGN=$(call strip_quotes, "\#")
+DEP_FILES= $(patsubst %,$(FIRMWARE_LOCATION)/%, $(shell sed -e /^$(POUND_SIGN)/d -e /^FIRMWARE_LOCATION/d $(CONFIG_AMDFW_CONFIG_FILE) | awk '{print $$2}' ))
AMDFW_COMMON_ARGS=$(OPT_PSP_APCB_FILES) \
$(OPT_APOB_ADDR) \