diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-06-03 14:55:10 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-06 10:36:37 +0000 |
commit | 7904e720d5bd1a2fdbf5a4077759b1741895bcf4 (patch) | |
tree | 750d286c61a26124fd353ba2894dfd6d189ebbab /src/northbridge/amd | |
parent | d30c129ad44aacf4cccf98a7cac353b7f9fdedca (diff) | |
download | coreboot-7904e720d5bd1a2fdbf5a4077759b1741895bcf4.tar.xz |
arch/x86: Flag platforms without RELOCATABLE_RAMSTAGE
To flip the Kconfig default, flag some platforms with
NO_RELOCATABLE_RAMSTAGE.
Change-Id: I72c6d07e5a60789bbe0e068a0130d7e3bd07a1d5
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/26814
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/northbridge/amd')
-rw-r--r-- | src/northbridge/amd/amdfam10/Kconfig | 1 | ||||
-rw-r--r-- | src/northbridge/amd/lx/Kconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/northbridge/amd/amdfam10/Kconfig b/src/northbridge/amd/amdfam10/Kconfig index b414d91f3b..ba397a9294 100644 --- a/src/northbridge/amd/amdfam10/Kconfig +++ b/src/northbridge/amd/amdfam10/Kconfig @@ -24,6 +24,7 @@ config NORTHBRIDGE_AMD_AMDFAM10 select PCIEXP_COMMON_CLOCK select PCIEXP_CLK_PM select PCIEXP_L1_SUB_STATE + select NO_RELOCATABLE_RAMSTAGE if NORTHBRIDGE_AMD_AMDFAM10 config AGP_APERTURE_SIZE diff --git a/src/northbridge/amd/lx/Kconfig b/src/northbridge/amd/lx/Kconfig index abc3e4cdfb..53a0e0556b 100644 --- a/src/northbridge/amd/lx/Kconfig +++ b/src/northbridge/amd/lx/Kconfig @@ -2,6 +2,7 @@ config NORTHBRIDGE_AMD_LX bool select GEODE_VSA select LATE_CBMEM_INIT + select NO_RELOCATABLE_RAMSTAGE if NORTHBRIDGE_AMD_LX |