diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-10 08:36:14 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-10 08:36:14 -0400 |
commit | 9994a33865f4d55c44c9731c01e1f891543278de (patch) | |
tree | 77d8fe580493dbf9ce1820a703c482fba291b6b9 /arch/powerpc/kernel/Makefile | |
parent | 06d67d54741a5bfefa31945ef195dfa748c29025 (diff) |
powerpc: Introduce entry_{32,64}.S, misc_{32,64}.S, systbl.S
The system call table has been consolidated into systbl.S. We have
separate 32-bit and 64-bit versions of entry.S and misc.S since the
code is mostly sufficiently different to be not worth merging.
There are some common bits that will be extracted in future.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/Makefile')
-rw-r--r-- | arch/powerpc/kernel/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index 344cab678c6a..0625470a6235 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
@@ -17,12 +17,14 @@ extra-$(CONFIG_44x) := head_44x.o | |||
17 | extra-$(CONFIG_FSL_BOOKE) := head_fsl_booke.o | 17 | extra-$(CONFIG_FSL_BOOKE) := head_fsl_booke.o |
18 | extra-$(CONFIG_8xx) := head_8xx.o | 18 | extra-$(CONFIG_8xx) := head_8xx.o |
19 | extra-$(CONFIG_6xx) += idle_6xx.o | 19 | extra-$(CONFIG_6xx) += idle_6xx.o |
20 | extra-$(CONFIG_PPC64) += entry_64.o | ||
20 | extra-$(CONFIG_PPC_FPU) += fpu.o | 21 | extra-$(CONFIG_PPC_FPU) += fpu.o |
21 | extra-y += vmlinux.lds | 22 | extra-y += vmlinux.lds |
22 | 23 | ||
23 | obj-y := traps.o prom.o semaphore.o | 24 | obj-y += traps.o prom.o semaphore.o |
24 | obj-$(CONFIG_PPC32) += setup_32.o process.o | 25 | obj-$(CONFIG_PPC32) += entry_32.o setup_32.o misc_32.o |
25 | obj-$(CONFIG_PPC64) += idle_power4.o | 26 | obj-$(CONFIG_PPC64) += idle_power4.o |
27 | obj-$(CONFIG_PPC64) += misc_64.o | ||
26 | ifeq ($(CONFIG_PPC32),y) | 28 | ifeq ($(CONFIG_PPC32),y) |
27 | obj-$(CONFIG_PPC_OF) += prom_init.o of_device.o | 29 | obj-$(CONFIG_PPC_OF) += prom_init.o of_device.o |
28 | obj-$(CONFIG_MODULES) += ppc_ksyms.o | 30 | obj-$(CONFIG_MODULES) += ppc_ksyms.o |