diff options
author | Hendrik Brueckner <brueckner@linux.vnet.ibm.com> | 2010-05-17 04:00:09 -0400 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-05-17 04:00:16 -0400 |
commit | f3cb31e495668eae568c584c666631e26c68bdea (patch) | |
tree | f364e3a13649d815a13ffca598bd4eb7ae67e539 /arch/s390/Makefile | |
parent | a78f1c4c1dc4b9dedd17c46dd414f26c7bf1e503 (diff) |
[S390] vdso: add missing vdso_install target
Add missing vdso_install target to install the unstripped vdso images
into $(MODLIB)/vdso/. These files are helpful when containing
additional debugging information.
Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/Makefile')
-rw-r--r-- | arch/s390/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/s390/Makefile b/arch/s390/Makefile index 0da10746e0e5..30c5f01f93b0 100644 --- a/arch/s390/Makefile +++ b/arch/s390/Makefile | |||
@@ -116,6 +116,12 @@ image bzImage: vmlinux | |||
116 | zfcpdump: | 116 | zfcpdump: |
117 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 117 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
118 | 118 | ||
119 | vdso_install: | ||
120 | ifeq ($(CONFIG_64BIT),y) | ||
121 | $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@ | ||
122 | endif | ||
123 | $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@ | ||
124 | |||
119 | archclean: | 125 | archclean: |
120 | $(Q)$(MAKE) $(clean)=$(boot) | 126 | $(Q)$(MAKE) $(clean)=$(boot) |
121 | 127 | ||