Matt DeVillier (matt.devillier@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10038
-gerrit
commit d79105510fbcf4b0bc6ac3eb4967df7c5e2b61c8 Author: Matt DeVillier matt.devillier@gmail.com Date: Thu Apr 30 01:35:57 2015 -0500
dmp/vortex86: fix missing cpu Kconfig guards
Commit e2c2bb9 (dmp/vortex86: move PLL config to cpu Kconfig) failed to properly restrict the PLL config selection to that cpu, resulting in the selection option being present/required for all CPUs.
Fix by guarding the Kconfig options with if/endif.
Change-Id: Ifecf291b985ab9d0d13d6b1264d3bc9a314b8546 Signed-off-by: Matt DeVillier matt.devillier@gmail.com --- src/cpu/dmp/vortex86ex/Kconfig | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/src/cpu/dmp/vortex86ex/Kconfig b/src/cpu/dmp/vortex86ex/Kconfig index b14be7d..544dc09 100644 --- a/src/cpu/dmp/vortex86ex/Kconfig +++ b/src/cpu/dmp/vortex86ex/Kconfig @@ -19,6 +19,11 @@
config CPU_DMP_VORTEX86EX bool + +if CPU_DMP_VORTEX86EX + +config CPU_SPECIFIC_OPTIONS + def_bool y select ARCH_BOOTBLOCK_X86_32 select ARCH_VERSTAGE_X86_32 select ARCH_ROMSTAGE_X86_32 @@ -71,3 +76,5 @@ config PLL_500_375_33 bool "CPU=500Mhz/DRAM=375Mhz/PCI=33Mhz"
endchoice + +endif