mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 07:57:03 +07:00
30a713180b
Create a separate centaur_64.c file in the cpu/ dir for the useful parts to live in. Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
24 lines
633 B
Makefile
24 lines
633 B
Makefile
#
|
|
# Makefile for x86-compatible CPU details and quirks
|
|
#
|
|
|
|
obj-y := intel_cacheinfo.o addon_cpuid_features.o
|
|
obj-y += proc.o feature_names.o
|
|
|
|
obj-$(CONFIG_X86_32) += common.o bugs.o
|
|
obj-$(CONFIG_X86_32) += amd.o
|
|
obj-$(CONFIG_X86_64) += amd_64.o
|
|
obj-$(CONFIG_X86_32) += cyrix.o
|
|
obj-$(CONFIG_X86_32) += centaur.o
|
|
obj-$(CONFIG_X86_64) += centaur_64.o
|
|
obj-$(CONFIG_X86_32) += transmeta.o
|
|
obj-$(CONFIG_X86_32) += intel.o
|
|
obj-$(CONFIG_X86_64) += intel_64.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
|