diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2021-05-13 22:38:05 +0800 |
---|---|---|
committer | David Hendricks <david.hendricks@gmail.com> | 2021-05-16 22:23:31 +0000 |
commit | 17022bbc50027b1b91751c1d12477a07a02ba69f (patch) | |
tree | c1c02882b7de93611b12d703974707a31eb17517 /src/soc/amd/picasso | |
parent | 64b1352d05cfb0ddda25673cf88938761e9974db (diff) |
soc/amd/*/Makefile.inc: Strip the quotes
PSP_SOFTFUSE_BITS used to be like this:
15 0 29 "28 6"
It causes internal shell report error:
/bin/sh: -c: line 0: unexpected EOF while looking for matching `"'
/bin/sh: -c: line 1: syntax error: unexpected end of file
/bin/sh: -c: line 0: unexpected EOF while looking for matching `"'
/bin/sh: -c: line 1: syntax error: unexpected end of file
Change-Id: I716f19d37fb57b9ef3fc7259c6dcca7d21022d32
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54278
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/Makefile.inc b/src/soc/amd/picasso/Makefile.inc index b5154a40f5..214f76d812 100644 --- a/src/soc/amd/picasso/Makefile.inc +++ b/src/soc/amd/picasso/Makefile.inc @@ -107,7 +107,7 @@ PSP_SOFTFUSE_BITS += 29 endif # Use additional Soft Fuse bits specified in Kconfig -PSP_SOFTFUSE_BITS += $(CONFIG_PSP_SOFTFUSE_BITS) +PSP_SOFTFUSE_BITS += $(call strip_quotes, $(CONFIG_PSP_SOFTFUSE_BITS)) ifeq ($(CONFIG_PSP_LOAD_S0I3_FW),y) OPT_PSP_LOAD_S0I3_FW="--load-s0i3" |