diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 13:32:55 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-29 08:16:52 -0500 |
commit | 6bda2c8b32febeb38ee128047253751e080bad52 (patch) | |
tree | 7f6f78cf18cd69a44e987d985c57402d493d0dee /arch/x86/Makefile | |
parent | 1164dd0099c0d79146a55319670f57ab7ad1d352 (diff) |
x86: remove subarchitecture support
Remove the 32-bit subarchitecture support code.
All subarchitectures but Voyager have been converted. Voyager will be
done later or will be removed.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/Makefile')
-rw-r--r-- | arch/x86/Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 799a0d931c81..99550c407990 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -102,24 +102,6 @@ KBUILD_CFLAGS += -fno-asynchronous-unwind-tables | |||
102 | # prevent gcc from generating any FP code by mistake | 102 | # prevent gcc from generating any FP code by mistake |
103 | KBUILD_CFLAGS += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,) | 103 | KBUILD_CFLAGS += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,) |
104 | 104 | ||
105 | ### | ||
106 | # Sub architecture support | ||
107 | # fcore-y is linked before mcore-y files. | ||
108 | |||
109 | # Default subarch .c files | ||
110 | mcore-y := arch/x86/mach-default/ | ||
111 | |||
112 | # Voyager subarch support | ||
113 | mflags-$(CONFIG_X86_VOYAGER) := -Iarch/x86/include/asm/mach-voyager | ||
114 | mcore-$(CONFIG_X86_VOYAGER) := arch/x86/mach-voyager/ | ||
115 | |||
116 | # default subarch .h files | ||
117 | mflags-y += -Iarch/x86/include/asm/mach-default | ||
118 | |||
119 | # 64 bit does not support subarch support - clear sub arch variables | ||
120 | fcore-$(CONFIG_X86_64) := | ||
121 | mcore-$(CONFIG_X86_64) := | ||
122 | |||
123 | KBUILD_CFLAGS += $(mflags-y) | 105 | KBUILD_CFLAGS += $(mflags-y) |
124 | KBUILD_AFLAGS += $(mflags-y) | 106 | KBUILD_AFLAGS += $(mflags-y) |
125 | 107 | ||
@@ -145,9 +127,6 @@ core-$(CONFIG_LGUEST_GUEST) += arch/x86/lguest/ | |||
145 | core-y += arch/x86/kernel/ | 127 | core-y += arch/x86/kernel/ |
146 | core-y += arch/x86/mm/ | 128 | core-y += arch/x86/mm/ |
147 | 129 | ||
148 | # Remaining sub architecture files | ||
149 | core-y += $(mcore-y) | ||
150 | |||
151 | core-y += arch/x86/crypto/ | 130 | core-y += arch/x86/crypto/ |
152 | core-y += arch/x86/vdso/ | 131 | core-y += arch/x86/vdso/ |
153 | core-$(CONFIG_IA32_EMULATION) += arch/x86/ia32/ | 132 | core-$(CONFIG_IA32_EMULATION) += arch/x86/ia32/ |