5902ebce22
Including support for non-coherent cache, some mm-related things + relevant field in Kconfig and Makefiles. Also included rheap.o compilation if 8xx is defined. Non-coherent mapping were refined and renamed according to Cristoph Hellwig. Orphaned functions were cleaned up. [Also removed arch/ppc/kernel/dma-mapping.c, because otherwise compiling with ARCH=ppc for a non DMA-cache-coherent platform ends up with two copies of __dma_alloc_coherent etc. -- paulus.] Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
24 lines
630 B
Makefile
24 lines
630 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
extra-$(CONFIG_PPC_STD_MMU) := head.o
|
|
extra-$(CONFIG_40x) := head_4xx.o
|
|
extra-$(CONFIG_44x) := head_44x.o
|
|
extra-$(CONFIG_FSL_BOOKE) := head_fsl_booke.o
|
|
extra-$(CONFIG_8xx) := head_8xx.o
|
|
extra-y += vmlinux.lds
|
|
|
|
obj-y := entry.o traps.o time.o misc.o \
|
|
setup.o \
|
|
ppc_htab.o
|
|
obj-$(CONFIG_MODULES) += ppc_ksyms.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
obj-$(CONFIG_RAPIDIO) += rio.o
|
|
obj-$(CONFIG_KGDB) += ppc-stub.o
|
|
obj-$(CONFIG_SMP) += smp.o smp-tbsync.o
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
|
|
|
|
ifndef CONFIG_MATH_EMULATION
|
|
obj-$(CONFIG_8xx) += softemu8xx.o
|
|
endif
|