mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 08:08:09 +07:00
d44b9d17fa
It looks good to move bugs_64.c to cpu/bugs_64.c. Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
25 lines
667 B
Makefile
25 lines
667 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_64) += bugs_64.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
|