fa1408e4df
Move the CPU feature string names to a separate file (common to 32 and 64 bits); additionally, make <asm/cpufeature.h> includable by host code in preparation for including the CPU feature strings in the boot code. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
21 lines
561 B
Makefile
21 lines
561 B
Makefile
#
|
|
# Makefile for x86-compatible CPU details and quirks
|
|
#
|
|
|
|
obj-y := intel_cacheinfo.o addon_cpuid_features.o
|
|
obj-y += feature_names.o
|
|
|
|
obj-$(CONFIG_X86_32) += common.o proc.o bugs.o
|
|
obj-$(CONFIG_X86_32) += amd.o
|
|
obj-$(CONFIG_X86_32) += cyrix.o
|
|
obj-$(CONFIG_X86_32) += centaur.o
|
|
obj-$(CONFIG_X86_32) += transmeta.o
|
|
obj-$(CONFIG_X86_32) += intel.o
|
|
obj-$(CONFIG_X86_32) += nexgen.o
|
|
obj-$(CONFIG_X86_32) += umc.o
|
|
|
|
obj-$(CONFIG_X86_MCE) += mcheck/
|
|
obj-$(CONFIG_MTRR) += mtrr/
|
|
obj-$(CONFIG_CPU_FREQ) += cpufreq/
|
|
|
|
obj-$(CONFIG_X86_LOCAL_APIC) += perfctr-watchdog.o
|