diff options
author | Furquan Shaikh <furquan@google.com> | 2020-04-23 18:01:34 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-04-29 08:44:27 +0000 |
commit | 47cdf430e4c17864f45e18559846efce0e641c1d (patch) | |
tree | 851b12a1c326e8fd1251b8c37ed6f58515371ef2 /src/soc/amd | |
parent | 91a7abf25c72145b974002ca295ce60b0a8f405c (diff) | |
download | coreboot-47cdf430e4c17864f45e18559846efce0e641c1d.tar.xz |
soc/amd/picasso: Disable MP2 FW inclusion by default
Inclusion of MP2 firmware is optional and dependent on mainboard. Set
default option for including MP2 firmware in PSP directory to 'n'.
BUG=b:154880818
Signed-off-by: Furquan Shaikh <furquan@google.com>
Change-Id: I1ff7527a409d8ac7f4d30e69eafc53975b63e49b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40680
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/picasso/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/picasso/Kconfig b/src/soc/amd/picasso/Kconfig index afa18bc64c..c9f45f16f8 100644 --- a/src/soc/amd/picasso/Kconfig +++ b/src/soc/amd/picasso/Kconfig @@ -330,11 +330,11 @@ config USE_PSPSCUREOS config PSP_LOAD_MP2_FW bool "Include MP2 blobs in PSP build" - default y + default n help Include the MP2 firmwares and configuration into the PSP build. - If unsure, answer 'y' + If unsure, answer 'n' config PSP_LOAD_S0I3_FW bool "Include S0I3 blob in PSP build" |