From patchwork Fri Oct 16 00:12:25 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix VIA C3 and C7 CPUs in kconfig Date: Fri, 16 Oct 2009 00:12:25 -0000 From: Uwe Hermann X-Patchwork-Id: 412 Message-Id: <20091016001225.GM15511@greenwood> To: coreboot@coreboot.org See patch. Uwe. Acked-by: Peter Stuge Similar to r4626, change obj-y to driver-y for VIA C3 and C7. Otherwise the following happens at runtime (tested on VIA pc2500e, C7): Initializing CPU #0 CPU: vendor Centaur device 6a9 CPU: family 06, model 0a, stepping 09 Unknown cpu We also change C3 as it is pretty clear that the same problem occurs there. Signed-off-by: Uwe Hermann Index: src/cpu/via/model_c3/Makefile.inc =================================================================== --- src/cpu/via/model_c3/Makefile.inc (Revision 4780) +++ src/cpu/via/model_c3/Makefile.inc (Arbeitskopie) @@ -8,4 +8,4 @@ subdirs-y += ../../x86/smm subdirs-y += ../../intel/microcode -obj-y += model_c3_init.o +driver-y += model_c3_init.o Index: src/cpu/via/model_c7/Makefile.inc =================================================================== --- src/cpu/via/model_c7/Makefile.inc (Revision 4780) +++ src/cpu/via/model_c7/Makefile.inc (Arbeitskopie) @@ -8,4 +8,4 @@ subdirs-y += ../../x86/smm subdirs-y += ../../intel/microcode -obj-y += model_c7_init.o +driver-y += model_c7_init.o