aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/powerpc/Makefile3
-rw-r--r--arch/powerpc/boot/Makefile2
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
index 26788de1cc59..794992025d8d 100644
--- a/arch/powerpc/Makefile
+++ b/arch/powerpc/Makefile
@@ -166,6 +166,9 @@ define archhelp
166 @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs' 166 @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs'
167endef 167endef
168 168
169install:
170 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
171
169archclean: 172archclean:
170 $(Q)$(MAKE) $(clean)=$(boot) 173 $(Q)$(MAKE) $(clean)=$(boot)
171 174
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
index 3e172ff4fabb..1269b49481ec 100644
--- a/arch/powerpc/boot/Makefile
+++ b/arch/powerpc/boot/Makefile
@@ -176,7 +176,7 @@ $(obj)/zImage: $(addprefix $(obj)/, $(image-y))
176$(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y)) 176$(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y))
177 @rm -f $@; ln $< $@ 177 @rm -f $@; ln $< $@
178 178
179install: $(CONFIGURE) $(image-y) 179install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y))
180 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $< 180 sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $<
181 181
182# anything not in $(targets) 182# anything not in $(targets)