diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:17:01 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-11 05:17:01 -0400 |
commit | 9a163ed8e0552fdcffe405d2ea7134819a81456e (patch) | |
tree | b322fd2afbb812ba7ddfd22f3734aaab007c2aa5 /arch/i386/Makefile | |
parent | f7627e2513987bb5d4e8cb13c4e0a478352141ac (diff) |
i386: move kernel
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/i386/Makefile')
-rw-r--r-- | arch/i386/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/i386/Makefile b/arch/i386/Makefile index 397cfedb4b19..9c1da722964d 100644 --- a/arch/i386/Makefile +++ b/arch/i386/Makefile | |||
@@ -17,6 +17,13 @@ | |||
17 | # 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net> | 17 | # 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net> |
18 | # Added support for GEODE CPU | 18 | # Added support for GEODE CPU |
19 | 19 | ||
20 | # Fill in SRCARCH | ||
21 | SRCARCH := x86 | ||
22 | |||
23 | archprepare: | ||
24 | @mkdir -p ${objtree}/arch/x86/kernel | ||
25 | |||
26 | |||
20 | HAS_BIARCH := $(call cc-option-yn, -m32) | 27 | HAS_BIARCH := $(call cc-option-yn, -m32) |
21 | ifeq ($(HAS_BIARCH),y) | 28 | ifeq ($(HAS_BIARCH),y) |
22 | AS := $(AS) --32 | 29 | AS := $(AS) --32 |
@@ -99,10 +106,10 @@ core-$(CONFIG_XEN) += arch/x86/xen/ | |||
99 | # default subarch .h files | 106 | # default subarch .h files |
100 | mflags-y += -Iinclude/asm-i386/mach-default | 107 | mflags-y += -Iinclude/asm-i386/mach-default |
101 | 108 | ||
102 | head-y := arch/i386/kernel/head_32.o arch/i386/kernel/init_task_32.o | 109 | head-y := arch/x86/kernel/head_32.o arch/x86/kernel/init_task_32.o |
103 | 110 | ||
104 | libs-y += arch/x86/lib/ | 111 | libs-y += arch/x86/lib/ |
105 | core-y += arch/i386/kernel/ \ | 112 | core-y += arch/x86/kernel/ \ |
106 | arch/x86/mm/ \ | 113 | arch/x86/mm/ \ |
107 | $(mcore-y)/ \ | 114 | $(mcore-y)/ \ |
108 | arch/x86/crypto/ | 115 | arch/x86/crypto/ |