aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/Makefile7
-rw-r--r--arch/arm/boot/dts/Makefile4
2 files changed, 7 insertions, 4 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index 08a9ef58d9c3..fddf4beaee45 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -310,9 +310,9 @@ $(INSTALL_TARGETS):
310%.dtb: | scripts 310%.dtb: | scripts
311 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ 311 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@
312 312
313PHONY += dtbs 313PHONY += dtbs dtbs_install
314dtbs: scripts 314dtbs dtbs_install: prepare scripts
315 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) dtbs 315 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $@
316 316
317# We use MRPROPER_FILES and CLEAN_FILES now 317# We use MRPROPER_FILES and CLEAN_FILES now
318archclean: 318archclean:
@@ -331,6 +331,7 @@ define archhelp
331 echo ' bootpImage - Combined zImage and initial RAM disk' 331 echo ' bootpImage - Combined zImage and initial RAM disk'
332 echo ' (supply initrd image via make variable INITRD=<path>)' 332 echo ' (supply initrd image via make variable INITRD=<path>)'
333 echo '* dtbs - Build device tree blobs for enabled boards' 333 echo '* dtbs - Build device tree blobs for enabled boards'
334 echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)'
334 echo ' install - Install uncompressed kernel' 335 echo ' install - Install uncompressed kernel'
335 echo ' zinstall - Install compressed kernel' 336 echo ' zinstall - Install compressed kernel'
336 echo ' uinstall - Install U-Boot wrapped compressed kernel' 337 echo ' uinstall - Install U-Boot wrapped compressed kernel'
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index b9d6a8b485e0..649c8e345ac5 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -321,7 +321,7 @@ dtb-$(CONFIG_ARCH_ZYNQ) += zynq-zc702.dtb \
321 zynq-zc706.dtb \ 321 zynq-zc706.dtb \
322 zynq-zed.dtb 322 zynq-zed.dtb
323 323
324targets += dtbs 324targets += dtbs dtbs_install
325targets += $(dtb-y) 325targets += $(dtb-y)
326endif 326endif
327 327
@@ -331,3 +331,5 @@ dtbs: $(addprefix $(obj)/, $(dtb-y))
331 $(Q)rm -f $(obj)/../*.dtb 331 $(Q)rm -f $(obj)/../*.dtb
332 332
333clean-files := *.dtb 333clean-files := *.dtb
334
335dtbs_install: $(addsuffix _dtbinst_, $(dtb-y))