diff options
author | Olaf Hering <olh@suse.de> | 2005-10-28 20:46:55 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-29 01:15:34 -0400 |
commit | 1eee4daa9940f7044806d83006051104cc8680b3 (patch) | |
tree | 780d6d34bee7461241d04ee704deeaa80a4d92d6 | |
parent | 18f568b79bf698aea9a78b63782398c914241ad8 (diff) |
[PATCH] ppc64: reenable make install with defconfig
'make ARCH=ppc64 O=../O install' does not work with the defconfig.
CONFIG_PPC_BPA is part of it, but the BPA bootimage variable is wrong:
make[2]: *** No rule to make target `zImage', needed by `install'. Stop.
Signed-off-by: Olaf Hering <olh@suse.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/ppc64/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc64/Makefile b/arch/ppc64/Makefile index db1b25cdb5be..fdbd6f44adc0 100644 --- a/arch/ppc64/Makefile +++ b/arch/ppc64/Makefile | |||
@@ -108,7 +108,7 @@ $(boottargets-y): vmlinux | |||
108 | bootimage-$(CONFIG_PPC_PSERIES) := $(boot)/zImage | 108 | bootimage-$(CONFIG_PPC_PSERIES) := $(boot)/zImage |
109 | bootimage-$(CONFIG_PPC_PMAC) := vmlinux | 109 | bootimage-$(CONFIG_PPC_PMAC) := vmlinux |
110 | bootimage-$(CONFIG_PPC_MAPLE) := $(boot)/zImage | 110 | bootimage-$(CONFIG_PPC_MAPLE) := $(boot)/zImage |
111 | bootimage-$(CONFIG_PPC_BPA) := zImage | 111 | bootimage-$(CONFIG_PPC_BPA) := $(boot)/zImage |
112 | bootimage-$(CONFIG_PPC_ISERIES) := vmlinux | 112 | bootimage-$(CONFIG_PPC_ISERIES) := vmlinux |
113 | BOOTIMAGE := $(bootimage-y) | 113 | BOOTIMAGE := $(bootimage-y) |
114 | install: vmlinux | 114 | install: vmlinux |