diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2022-11-07 13:21:48 -0500 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-01-22 19:08:55 +0000 |
commit | 8190840fdfd182596c6cd8f9db845315815ae19a (patch) | |
tree | 5f372aae910ad0a323a05955b6310ccaeb84605b /src/soc/amd/common/Kconfig.common | |
parent | 99945dcb8c18b533d975ceae0aa8ad3dffe8543f (diff) |
soc/amd/*: Enable override of MAINBOARD_BLOBS_DIR
MAINBOARD_BLOBS_DIR is defined the same way by
picasso/cezanne/mendocino/phoenix/glinda and unused by stoneyridge, so
move it to a common area.
This makefile variable is currently only used to locate APCB blobs for
the different mainboards.
Add a Kconfig option to point to the APCB blobs directory. This allows
simple overriding to locations such as site-local.
TEST=Timeless builds
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Change-Id: I0702fdb97fbc2c73d97994ab4d5161ff0f467518
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69410
Reviewed-by: Jason Glenesk <jason.glenesk@amd.corp-partner.google.com>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/Kconfig.common')
-rw-r--r-- | src/soc/amd/common/Kconfig.common | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/soc/amd/common/Kconfig.common b/src/soc/amd/common/Kconfig.common index 5a84f2fdda..e612158acc 100644 --- a/src/soc/amd/common/Kconfig.common +++ b/src/soc/amd/common/Kconfig.common @@ -10,4 +10,10 @@ source "src/soc/amd/common/fsp/Kconfig" source "src/soc/amd/common/pi/Kconfig" source "src/soc/amd/common/psp_verstage/Kconfig" +config APCB_BLOBS_DIR + string "Mainboard blobs path" + default "3rdparty/blobs/mainboard/\$(MAINBOARDDIR)" + help + The path to the APCB mainboard blobs + endif # SOC_AMD_COMMON |