Author: rminnich Date: 2009-10-02 01:22:50 +0200 (Fri, 02 Oct 2009) New Revision: 4706
Modified: trunk/coreboot-v2/src/cpu/Kconfig Log: Support variables for MMX and SSE. These would be used in e.g. Makefile.romcc.inc to enable certain features.
Signed-off-by: Ronald G. Minnich rminnich@gmail.com
Acked-by: Peter Stuge peter@stuge.se
Modified: trunk/coreboot-v2/src/cpu/Kconfig =================================================================== --- trunk/coreboot-v2/src/cpu/Kconfig 2009-10-01 22:34:18 UTC (rev 4705) +++ trunk/coreboot-v2/src/cpu/Kconfig 2009-10-01 23:22:50 UTC (rev 4706) @@ -25,3 +25,17 @@ bool default y if MAX_CPUS != 1 default n + +config MMX + bool + default n + help + Set this in socket or model if the CPU has MMX. + If the CPUs for the socket always have MMX, set it there. + +config SSE + bool + default n + help + Set this in socket or model if the CPU has SSE. + If the CPUs for the socket always have MX, set it there.