diff options
author | Hendrik Brueckner <brueckner@linux.vnet.ibm.com> | 2010-05-17 10:00:09 +0200 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-05-17 10:00:16 +0200 |
commit | f3cb31e495668eae568c584c666631e26c68bdea (patch) | |
tree | f364e3a13649d815a13ffca598bd4eb7ae67e539 /arch/s390/Makefile | |
parent | a78f1c4c1dc4b9dedd17c46dd414f26c7bf1e503 (diff) | |
download | linux-f3cb31e495668eae568c584c666631e26c68bdea.tar.gz linux-f3cb31e495668eae568c584c666631e26c68bdea.tar.bz2 linux-f3cb31e495668eae568c584c666631e26c68bdea.zip |
[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 zfcpdump: $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ +vdso_install: +ifeq ($(CONFIG_64BIT),y) + $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@ +endif + $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@ + archclean: $(Q)$(MAKE) $(clean)=$(boot) |