aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Makefile.dtbinst
diff options
context:
space:
mode:
authorRobert Richter <rrichter@cavium.com>2014-09-03 09:29:24 -0400
committerRobert Richter <rrichter@cavium.com>2014-10-21 12:06:58 -0400
commit9fb5e5372208973984a23ee6f5f025c05d364633 (patch)
treec8aaa3059e1d9eace7cc2e5532d8b18b8a93d4c1 /scripts/Makefile.dtbinst
parent862f464a540554a28273b761b4ce72541dc75914 (diff)
dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
Move dtbs install rules to Makefile.dtbinst. This change is needed to implement support for dts vendor subdirs. The change makes Makefiles easier and smaller as no longer the dtbs_install rule needs to be defined. Another advantage is that install goals are not encoded in targets anymore (%.dtb_dtbinst_). Signed-off-by: Robert Richter <rrichter@cavium.com>
Diffstat (limited to 'scripts/Makefile.dtbinst')
-rw-r--r--scripts/Makefile.dtbinst38
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/Makefile.dtbinst b/scripts/Makefile.dtbinst
new file mode 100644
index 000000000000..54286cccc289
--- /dev/null
+++ b/scripts/Makefile.dtbinst
@@ -0,0 +1,38 @@
1# ==========================================================================
2# Installing dtb files
3#
4# Installs all dtb files listed in $(dtb-y) either in the
5# INSTALL_DTBS_PATH directory or the default location:
6#
7# $INSTALL_PATH/dtbs/$KERNELRELEASE
8#
9# ==========================================================================
10
11src := $(obj)
12
13PHONY := __dtbs_install
14__dtbs_install:
15
16include include/config/auto.conf
17include scripts/Kbuild.include
18include $(srctree)/$(obj)/Makefile
19
20PHONY += __dtbs_install_prep
21__dtbs_install_prep:
22 $(Q)if [ -d $(INSTALL_DTBS_PATH).old ]; then rm -rf $(INSTALL_DTBS_PATH).old; fi
23 $(Q)if [ -d $(INSTALL_DTBS_PATH) ]; then mv $(INSTALL_DTBS_PATH) $(INSTALL_DTBS_PATH).old; fi
24 $(Q)mkdir -p $(INSTALL_DTBS_PATH)
25
26dtbinst-files := $(dtb-y)
27
28# Helper targets for Installing DTBs into the boot directory
29quiet_cmd_dtb_install = INSTALL $<
30 cmd_dtb_install = cp $< $(2)
31
32$(dtbinst-files): %.dtb: $(obj)/%.dtb | __dtbs_install_prep
33 $(call cmd,dtb_install,$(INSTALL_DTBS_PATH))
34
35PHONY += $(dtbinst-files)
36__dtbs_install: $(dtbinst-files)
37
38.PHONY: $(PHONY)