diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2008-02-23 03:58:20 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:49 -0400 |
commit | 700efc1b9f6afe34caae231b87d129ad8ffb559f (patch) | |
tree | 272db7a6e7040b4833b2a6b8e241105f44ff2542 /arch/x86/Makefile | |
parent | 322850af8d93735f67b8ebf84bb1350639be3f34 (diff) |
x86: introduce kernel/head32.c
Copy x86_64 and add a head32.c so we can start moving early
architecture initialization out of assembly.
[ Sam Ravnborg <sam@ravnborg.org>: updated it to x86 ]
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/Makefile')
-rw-r--r-- | arch/x86/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index f1e739a43d41..03131ce1d526 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -159,9 +159,9 @@ KBUILD_AFLAGS += $(mflags-y) | |||
159 | ### | 159 | ### |
160 | # Kernel objects | 160 | # Kernel objects |
161 | 161 | ||
162 | head-y := arch/x86/kernel/head_$(BITS).o | 162 | head-y := arch/x86/kernel/head_$(BITS).o |
163 | head-$(CONFIG_X86_64) += arch/x86/kernel/head64.o | 163 | head-y += arch/x86/kernel/head$(BITS).o |
164 | head-y += arch/x86/kernel/init_task.o | 164 | head-y += arch/x86/kernel/init_task.o |
165 | 165 | ||
166 | libs-y += arch/x86/lib/ | 166 | libs-y += arch/x86/lib/ |
167 | 167 | ||