Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1325
-gerrit
commit 2c987a68e57477fadd78c4d1e73469d9447fde53 Author: Stefan Reinauer reinauer@chromium.org Date: Mon Jun 25 14:12:58 2012 -0700
Make MAX_PHYSICAL_CPUS invisible on non-AMD boards
It's only used on AMD based boards. Hence drop it, so we don't accidently start using it by mistake instead of MAX_CPUS
Change-Id: Id8f522f24283129874d56e70bd00df92abe9c3cf Signed-off-by: Stefan Reinauer reinauer@google.com --- src/cpu/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index 5196e1a..f37bbf6 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -23,6 +23,7 @@ config DCACHE_RAM_GLOBAL_VAR_SIZE # yet be dropped completely. config MAX_PHYSICAL_CPUS int + depends on CPU_AMD_MODEL_10XXX || CPU_AMD_MODEL_FXX || CPU_AMD_AGESA default 1
config SMP