diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-07-21 14:39:04 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-07-29 08:00:25 +0000 |
commit | c81800a0e1d3b579e453c2354b87fcdb374950c3 (patch) | |
tree | 9e76befb2c2c5f324f168f5b81313df454acc079 | |
parent | c27daff542246281303b1de495e06a9a872b01d6 (diff) |
Expose Kconfig boolean for AGESA or binaryPI
Change-Id: I8d9097100eee68a67091342161d169929c1a74dd
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/20696
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r-- | src/vendorcode/amd/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vendorcode/amd/Kconfig b/src/vendorcode/amd/Kconfig index 89c5a90448..0c52b2f8f5 100644 --- a/src/vendorcode/amd/Kconfig +++ b/src/vendorcode/amd/Kconfig @@ -13,7 +13,7 @@ # GNU General Public License for more details. # -if CPU_AMD_PI || SOC_AMD_PI +if CPU_AMD_AGESA || CPU_AMD_PI || SOC_AMD_PI menu "AMD Platform Initialization" @@ -21,7 +21,7 @@ choice prompt "AGESA source" default CPU_AMD_AGESA_BINARY_PI if CPU_AMD_PI default CPU_AMD_AGESA_BINARY_PI if SOC_AMD_PI - default CPU_AMD_AGESA_OPENSOURCE + default CPU_AMD_AGESA_OPENSOURCE if CPU_AMD_AGESA help Select the method for including the AMD Platform Initialization code into coreboot. Platform Initialization code is required for |