diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2006-01-11 00:41:29 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-11 03:52:05 -0500 |
commit | 97b1b999748d3cde6a3f381e0839e0f1082323e6 (patch) | |
tree | e9cd22289aa81e37de511146507fb3a5fff6d066 /arch/powerpc | |
parent | 886c98d78652f78a64cb21516d3b25ffd5c05e94 (diff) |
[PATCH] powerpc: Don't build crash.c for PPC32
arch/powerpc/kernel/crash.c isn't safe for PPC32 (yet?), so don't build it.
Built with CONFIG_KEXEC=y for pmac32_defconfig, pseries_defconfig,
and g5_defconfig.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index 144e284d21dd..bbfa1bdceb4d 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
@@ -61,9 +61,9 @@ obj-$(CONFIG_MODULES) += $(module-y) | |||
61 | pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \ | 61 | pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \ |
62 | pci_direct_iommu.o iomap.o | 62 | pci_direct_iommu.o iomap.o |
63 | obj-$(CONFIG_PCI) += $(pci64-y) | 63 | obj-$(CONFIG_PCI) += $(pci64-y) |
64 | kexec-$(CONFIG_PPC64) := machine_kexec_64.o | 64 | kexec-$(CONFIG_PPC64) := machine_kexec_64.o crash.o |
65 | kexec-$(CONFIG_PPC32) := machine_kexec_32.o | 65 | kexec-$(CONFIG_PPC32) := machine_kexec_32.o |
66 | obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y) | 66 | obj-$(CONFIG_KEXEC) += machine_kexec.o $(kexec-y) |
67 | 67 | ||
68 | ifeq ($(CONFIG_PPC_ISERIES),y) | 68 | ifeq ($(CONFIG_PPC_ISERIES),y) |
69 | $(obj)/head_64.o: $(obj)/lparmap.s | 69 | $(obj)/head_64.o: $(obj)/lparmap.s |