diff options
author | Kyle McMartin <[email protected]> | 2013-06-16 20:32:44 +0100 |
---|---|---|
committer | Catalin Marinas <[email protected]> | 2013-06-19 17:54:06 +0100 |
commit | 3c01742a8ac93a3abf9b099758db970410427afd (patch) | |
tree | b2b5741bdf6d65542fb83f650979fdf45ed14021 | |
parent | 63917f0b5ba2a932d4fca7f67d1a1eae9034269e (diff) |
arm64/Makefile: provide vdso_install target
Provide a vdso_install target in the arm64 Makefile, as other architectures
with a vdso do.
Signed-off-by: Kyle McMartin <[email protected]>
Acked-by: Will Deacon <[email protected]>
Signed-off-by: Catalin Marinas <[email protected]>
-rw-r--r-- | arch/arm64/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile index 741f04fd636a..d90cf79f233a 100644 --- a/arch/arm64/Makefile +++ b/arch/arm64/Makefile @@ -62,6 +62,10 @@ zinstall install: vmlinux dtbs: scripts $(Q)$(MAKE) $(build)=$(boot)/dts dtbs +PHONY += vdso_install +vdso_install: + $(Q)$(MAKE) $(build)=arch/arm64/kernel/vdso $@ + # We use MRPROPER_FILES and CLEAN_FILES now archclean: $(Q)$(MAKE) $(clean)=$(boot) |