Marc Jones ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/487
-gerrit commit 482f5346ca1a49602cf0b3a3f69a22442a25dab1 Author: Marc Jones <[email protected]> Date: Wed Dec 14 15:33:33 2011 -0700 Fix Fam10 MMCONF_SUPPORT_DEFAULT setting. I misunderstood how kconfig select works. It needs to be selected with a config option. Moved the select to the correct location. Change-Id: If9b1e21e6cbc5af4671efb76cf87dd18dbbe2234 Signed-off-by: Marc Jones <[email protected]> --- src/cpu/amd/model_10xxx/Kconfig | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig index 310f98d..221d044 100644 --- a/src/cpu/amd/model_10xxx/Kconfig +++ b/src/cpu/amd/model_10xxx/Kconfig @@ -2,6 +2,7 @@ config CPU_AMD_MODEL_10XXX bool select SSE select SSE2 + select MMCONF_SUPPORT_DEFAULT if CPU_AMD_MODEL_10XXX config CPU_ADDR_BITS @@ -82,6 +83,4 @@ config UPDATE_CPU_MICROCODE patches, so you may need to also disable microcode updates in your operating system in order for this option to matter. -select MMCONF_SUPPORT_DEFAULT - endif # CPU_AMD_MODEL_10XXX -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

