diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:23 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:23 -0400 |
commit | 34d19e29c9402b6149c128517f73e7773d5838bf (patch) | |
tree | 5528a8ecba87341c3722cfdd813d315931375c0a /arch/x86 | |
parent | 5e4181b31366ea13b7b81ce3b0041f5710cc8b65 (diff) |
x86: prepare consolidation of cpu/ related Makefiles
Prepare the makefiles in x86/kernel/cpu and x86/kernel/cpu/mcheck to
be used by the x86_64 build as well.
No code change.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/Makefile | 24 | ||||
-rw-r--r-- | arch/x86/kernel/cpu/mcheck/Makefile | 7 |
2 files changed, 17 insertions, 14 deletions
diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile index 778396c78d65..cfdb2f3bd763 100644 --- a/arch/x86/kernel/cpu/Makefile +++ b/arch/x86/kernel/cpu/Makefile | |||
@@ -2,19 +2,19 @@ | |||
2 | # Makefile for x86-compatible CPU details and quirks | 2 | # Makefile for x86-compatible CPU details and quirks |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := common.o proc.o bugs.o | 5 | obj-y := intel_cacheinfo.o addon_cpuid_features.o |
6 | 6 | ||
7 | obj-y += amd.o | 7 | obj-$(CONFIG_X86_32) += common.o proc.o bugs.o |
8 | obj-y += cyrix.o | 8 | obj-$(CONFIG_X86_32) += amd.o |
9 | obj-y += centaur.o | 9 | obj-$(CONFIG_X86_32) += cyrix.o |
10 | obj-y += transmeta.o | 10 | obj-$(CONFIG_X86_32) += centaur.o |
11 | obj-y += intel.o intel_cacheinfo.o addon_cpuid_features.o | 11 | obj-$(CONFIG_X86_32) += transmeta.o |
12 | obj-y += nexgen.o | 12 | obj-$(CONFIG_X86_32) += intel.o |
13 | obj-y += umc.o | 13 | obj-$(CONFIG_X86_32) += nexgen.o |
14 | obj-$(CONFIG_X86_32) += umc.o | ||
14 | 15 | ||
15 | obj-$(CONFIG_X86_MCE) += mcheck/ | 16 | obj-$(CONFIG_X86_MCE) += mcheck/ |
16 | 17 | obj-$(CONFIG_MTRR) += mtrr/ | |
17 | obj-$(CONFIG_MTRR) += mtrr/ | 18 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ |
18 | obj-$(CONFIG_CPU_FREQ) += cpufreq/ | ||
19 | 19 | ||
20 | obj-$(CONFIG_X86_LOCAL_APIC) += perfctr-watchdog.o | 20 | obj-$(CONFIG_X86_LOCAL_APIC) += perfctr-watchdog.o |
diff --git a/arch/x86/kernel/cpu/mcheck/Makefile b/arch/x86/kernel/cpu/mcheck/Makefile index f1ebe1c1c17a..1ba7e3f52769 100644 --- a/arch/x86/kernel/cpu/mcheck/Makefile +++ b/arch/x86/kernel/cpu/mcheck/Makefile | |||
@@ -1,2 +1,5 @@ | |||
1 | obj-y = mce.o k7.o p4.o p5.o p6.o winchip.o therm_throt.o | 1 | obj-$(CONFIG_X86_32) = mce.o k7.o p4.o p5.o p6.o winchip.o |
2 | obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o | 2 | obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o |
3 | |||
4 | # shared between i386 and x86_64 | ||
5 | obj-y += therm_throt.o | ||