summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-07-16 14:36:01 -0600
committerRaul Rangel <rrangel@chromium.org>2021-07-19 18:22:40 +0000
commit21c70b1d0b1ebfde3f4d0aa1f45342e377be2e15 (patch)
tree021003d09d65ddd05836e6644e325cde432677be /src
parent73193cf7b77592d52bb0c60da887af227ac0ace7 (diff)
downloadcoreboot-21c70b1d0b1ebfde3f4d0aa1f45342e377be2e15.tar.gz
coreboot-21c70b1d0b1ebfde3f4d0aa1f45342e377be2e15.tar.bz2
coreboot-21c70b1d0b1ebfde3f4d0aa1f45342e377be2e15.zip
soc/amd/{cezanne,picasso}: Escape PSP_VERSTAGE_FILE default
If we don't escape the $ then the actual $(obj) path will be written into the .config file. With this change `$(obj)` is written into the .config file. The Makefile then does: PSP_VERSTAGE_FILE=$(call strip_quotes,$(CONFIG_PSP_VERSTAGE_FILE)) Since this is a recursive assignment the $(obj) will be expanded at that point. This change makes it easier to compare full .config files. BUG=none TEST=Build ezkinil Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Ic961df148d3f22585f3441d75c3f2454329c678a Reviewed-on: https://review.coreboot.org/c/coreboot/+/56395 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kangheui Won <khwon@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/amd/cezanne/Kconfig2
-rw-r--r--src/soc/amd/picasso/Kconfig2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/cezanne/Kconfig b/src/soc/amd/cezanne/Kconfig
index b58e45398ecd..fab31d4f0e13 100644
--- a/src/soc/amd/cezanne/Kconfig
+++ b/src/soc/amd/cezanne/Kconfig
@@ -379,7 +379,7 @@ config PSP_SOFTFUSE_BITS
config PSP_VERSTAGE_FILE
string "Specify the PSP_verstage file path"
depends on VBOOT_STARTS_BEFORE_BOOTBLOCK
- default "$(obj)/psp_verstage.bin"
+ default "\$(obj)/psp_verstage.bin"
help
Add psp_verstage file to the build & PSP Directory Table
diff --git a/src/soc/amd/picasso/Kconfig b/src/soc/amd/picasso/Kconfig
index 88bff501794c..eb1780ae8dd1 100644
--- a/src/soc/amd/picasso/Kconfig
+++ b/src/soc/amd/picasso/Kconfig
@@ -432,7 +432,7 @@ config PSP_UNLOCK_SECURE_DEBUG
config PSP_VERSTAGE_FILE
string "Specify the PSP_verstage file path"
depends on VBOOT_STARTS_BEFORE_BOOTBLOCK
- default "$(obj)/psp_verstage.bin"
+ default "\$(obj)/psp_verstage.bin"
help
Add psp_verstage file to the build & PSP Directory Table