35cd8785de
Since the udbg code in ppc64 has no ppc32 equivalent, move it straight over into arch/powerpc (and include/asm-powerpc for udbg.h). In time, we probably want to meld the various bits and pieces of 32-bit early debugging code into udbg, but for now only include it on CONFIG_PPC64=y builds. The only change during the move is to standardise the protecting #ifdef/#define in udbg.h, and move its banner comment above the initial #ifdef (which seems to be normal practice). Built and booted on POWER5 LPAR (ARCH=powerpc and ARCH=ppc64). Built for 32bit multiplatform (ARCH=powerpc). Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
47 lines
1 KiB
Makefile
47 lines
1 KiB
Makefile
#
|
|
# Makefile for the linux ppc64 kernel.
|
|
#
|
|
|
|
ifneq ($(CONFIG_PPC_MERGE),y)
|
|
|
|
EXTRA_CFLAGS += -mno-minimal-toc
|
|
extra-y := head.o vmlinux.lds
|
|
|
|
obj-y := misc.o prom.o
|
|
|
|
endif
|
|
|
|
obj-y += idle.o dma.o \
|
|
align.o \
|
|
rtc.o \
|
|
iommu.o vdso.o
|
|
obj-y += vdso32/ vdso64/
|
|
|
|
pci-obj-$(CONFIG_PPC_MULTIPLATFORM) += pci_dn.o pci_direct_iommu.o
|
|
|
|
obj-$(CONFIG_PCI) += pci.o pci_iommu.o iomap.o $(pci-obj-y)
|
|
|
|
obj-$(CONFIG_PPC_MULTIPLATFORM) += nvram.o
|
|
ifneq ($(CONFIG_PPC_MERGE),y)
|
|
obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o
|
|
endif
|
|
|
|
obj-$(CONFIG_KEXEC) += machine_kexec.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
ifneq ($(CONFIG_PPC_MERGE),y)
|
|
obj-$(CONFIG_MODULES) += ppc_ksyms.o
|
|
endif
|
|
obj-$(CONFIG_HVC_CONSOLE) += hvconsole.o
|
|
ifneq ($(CONFIG_PPC_MERGE),y)
|
|
obj-$(CONFIG_BOOTX_TEXT) += btext.o
|
|
endif
|
|
obj-$(CONFIG_HVCS) += hvcserver.o
|
|
|
|
obj-$(CONFIG_KPROBES) += kprobes.o
|
|
|
|
ifneq ($(CONFIG_PPC_MERGE),y)
|
|
ifeq ($(CONFIG_PPC_ISERIES),y)
|
|
arch/ppc64/kernel/head.o: arch/powerpc/kernel/lparmap.s
|
|
AFLAGS_head.o += -Iarch/powerpc/kernel
|
|
endif
|
|
endif
|