diff options
author | Ana Carolina Cabral <ana.cpmelo95@gmail.com> | 2024-09-20 09:50:23 -0300 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2024-09-23 15:24:11 +0000 |
commit | 183a17e42f1d699ad0fb5f6378663d346ffcb8da (patch) | |
tree | 35eabdcf1f1f45e681bea39e05100b9bca0d2c3d /src/mainboard | |
parent | a46e5e09b8f4ca90fcb6c09dda8a6247d9426088 (diff) |
mb/amd/birman_plus: Fix menuconfig option for EC firmware path
Menu option wasn't showing due to wrong config flag.
Change-Id: I30592a8c3e57017473511366a8cf11928e55b5e9
Signed-off-by: Ana Carolina Cabral <ana.cpmelo95@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84438
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/amd/birman_plus/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/birman_plus/Kconfig b/src/mainboard/amd/birman_plus/Kconfig index df2568e6ad..462fece271 100644 --- a/src/mainboard/amd/birman_plus/Kconfig +++ b/src/mainboard/amd/birman_plus/Kconfig @@ -49,7 +49,7 @@ config BIRMANPLUS_HAVE_MCHP_FW config BIRMANPLUS_MCHP_SIG_FILE string "Microchip EC signature file" - depends on BIRMAN_HAVE_MCHP_FW + depends on BIRMANPLUS_HAVE_MCHP_FW default "3rdparty/blobs/mainboard/amd/birman_plus/EC_birmanplus_sig.bin" help The EC sig blob is the first 4kBytes of the firmware image. @@ -61,7 +61,7 @@ config AMD_SOC_CONSOLE_UART config BIRMANPLUS_MCHP_FW_FILE string "Microchip EC firmware file" - depends on BIRMAN_HAVE_MCHP_FW + depends on BIRMANPLUS_HAVE_MCHP_FW default "3rdparty/blobs/mainboard/amd/birman_plus/EC_birmanplus.bin" help The EC firmware blob is at the EC_BODY FMAP region of the firmware image. |