diff options
-rw-r--r-- | arch/powerpc/Makefile | 3 | ||||
-rw-r--r-- | arch/powerpc/boot/Makefile | 2 |
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' |
167 | endef | 167 | endef |
168 | 168 | ||
169 | install: | ||
170 | $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install | ||
171 | |||
169 | archclean: | 172 | archclean: |
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 | ||
179 | install: $(CONFIGURE) $(image-y) | 179 | install: $(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) |