diff options
-rw-r--r-- | arch/arm64/Makefile | 6 | ||||
-rw-r--r-- | arch/arm64/boot/dts/Makefile | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile index 20901ffed182..a963b3a8fc34 100644 --- a/arch/arm64/Makefile +++ b/arch/arm64/Makefile | |||
@@ -70,8 +70,9 @@ zinstall install: vmlinux | |||
70 | %.dtb: scripts | 70 | %.dtb: scripts |
71 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ | 71 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
72 | 72 | ||
73 | dtbs: scripts | 73 | PHONY += dtbs dtbs_install |
74 | $(Q)$(MAKE) $(build)=$(boot)/dts dtbs | 74 | dtbs dtbs_install: prepare scripts |
75 | $(Q)$(MAKE) $(build)=$(boot)/dts $@ | ||
75 | 76 | ||
76 | PHONY += vdso_install | 77 | PHONY += vdso_install |
77 | vdso_install: | 78 | vdso_install: |
@@ -85,6 +86,7 @@ define archhelp | |||
85 | echo '* Image.gz - Compressed kernel image (arch/$(ARCH)/boot/Image.gz)' | 86 | echo '* Image.gz - Compressed kernel image (arch/$(ARCH)/boot/Image.gz)' |
86 | echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' | 87 | echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' |
87 | echo '* dtbs - Build device tree blobs for enabled boards' | 88 | echo '* dtbs - Build device tree blobs for enabled boards' |
89 | echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)' | ||
88 | echo ' install - Install uncompressed kernel' | 90 | echo ' install - Install uncompressed kernel' |
89 | echo ' zinstall - Install compressed kernel' | 91 | echo ' zinstall - Install compressed kernel' |
90 | echo ' Install using (your) ~/bin/installkernel or' | 92 | echo ' Install using (your) ~/bin/installkernel or' |
diff --git a/arch/arm64/boot/dts/Makefile b/arch/arm64/boot/dts/Makefile index f8001a62029c..3a75cdc2d087 100644 --- a/arch/arm64/boot/dts/Makefile +++ b/arch/arm64/boot/dts/Makefile | |||
@@ -2,9 +2,11 @@ dtb-$(CONFIG_ARCH_THUNDER) += thunder-88xx.dtb | |||
2 | dtb-$(CONFIG_ARCH_VEXPRESS) += rtsm_ve-aemv8a.dtb foundation-v8.dtb | 2 | dtb-$(CONFIG_ARCH_VEXPRESS) += rtsm_ve-aemv8a.dtb foundation-v8.dtb |
3 | dtb-$(CONFIG_ARCH_XGENE) += apm-mustang.dtb | 3 | dtb-$(CONFIG_ARCH_XGENE) += apm-mustang.dtb |
4 | 4 | ||
5 | targets += dtbs | 5 | targets += dtbs dtbs_install |
6 | targets += $(dtb-y) | 6 | targets += $(dtb-y) |
7 | 7 | ||
8 | dtbs: $(addprefix $(obj)/, $(dtb-y)) | 8 | dtbs: $(addprefix $(obj)/, $(dtb-y)) |
9 | 9 | ||
10 | clean-files := *.dtb | 10 | clean-files := *.dtb |
11 | |||
12 | dtbs_install: $(addsuffix _dtbinst_, $(dtb-y)) | ||