Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc: Don't compile in arch/ppc/kernel for 32-bit ARCH=powerpc

All of the things needed for 32-bit ARCH=powerpc builds have now
moved to arch/powerpc/kernel, so we don't need to go down into
arch/ppc/kernel any more, and we can remove the CONFIG_PPC_MERGE
conditional from arch/ppc/kernel/Makefile.

There were two files still referenced in the merge section of
arch/ppc/kernel/Makefile: ppc-stub.o, depending on CONFIG_KGDB,
and dma-mapping.o, depending on CONFIG_NOT_COHERENT_CACHE. None
of the platforms currently in ARCH=powerpc have caches that
aren't coherent with DMA, but when we do get one we'll move
dma-mapping.c over. As for CONFIG_KGDB, none of the Kconfig
files in the tree define it, so I'll let it languish for now.

Signed-off-by: Paul Mackerras <paulus@samba.org>

-10
-1
arch/powerpc/Makefile
··· 129 129 arch/powerpc/lib/ \ 130 130 arch/powerpc/sysdev/ \ 131 131 arch/powerpc/platforms/ 132 - core-$(CONFIG_PPC32) += arch/ppc/kernel/ 133 132 core-$(CONFIG_MATH_EMULATION) += arch/ppc/math-emu/ 134 133 core-$(CONFIG_XMON) += arch/powerpc/xmon/ 135 134 core-$(CONFIG_APUS) += arch/ppc/amiga/
-9
arch/ppc/kernel/Makefile
··· 1 1 # 2 2 # Makefile for the linux kernel. 3 3 # 4 - ifneq ($(CONFIG_PPC_MERGE),y) 5 - 6 4 extra-$(CONFIG_PPC_STD_MMU) := head.o 7 5 extra-$(CONFIG_40x) := head_4xx.o 8 6 extra-$(CONFIG_44x) := head_44x.o ··· 21 23 22 24 ifndef CONFIG_MATH_EMULATION 23 25 obj-$(CONFIG_8xx) += softemu8xx.o 24 - endif 25 - 26 - # These are here while we do the architecture merge 27 - 28 - else 29 - obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-mapping.o 30 - obj-$(CONFIG_KGDB) += ppc-stub.o 31 26 endif