aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/Makefile')
-rw-r--r--arch/powerpc/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
index 71632b20b81d..dc2d18e93002 100644
--- a/arch/powerpc/Makefile
+++ b/arch/powerpc/Makefile
@@ -169,9 +169,15 @@ define archhelp
169 @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs' 169 @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs'
170endef 170endef
171 171
172install: 172install: vdso_install
173 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install 173 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
174 174
175vdso_install:
176ifeq ($(CONFIG_PPC64),y)
177 $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
178endif
179 $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
180
175archclean: 181archclean:
176 $(Q)$(MAKE) $(clean)=$(boot) 182 $(Q)$(MAKE) $(clean)=$(boot)
177 183