aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAndrew Bresticker <abrestic@chromium.org>2014-12-25 12:48:58 -0500
committerRalf Baechle <ralf@linux-mips.org>2015-04-01 11:21:34 -0400
commiteb2236ea580bb21c954c889cc3dc05b3e98238cd (patch)
treea7e36e96ea110a7d48076f1c729c543614ef3f8a /arch
parent8c0b9ee8665c43ee370108930ff51cab9a545c1c (diff)
MIPS: Add dtbs_install target
Add the dtbs_install Makefile target to install the dtb files into $INSTALL_DTBS_PATH. Signed-off-by: Andrew Bresticker <abrestic@chromium.org> Tested-by: Kevin Cernekee <cernekee@gmail.com> Cc: f.fainelli@gmail.com Cc: jaedon.shin@gmail.com Cc: tglx@linutronix.de Cc: jason@lakedaemon.net Cc: jogo@openwrt.org Cc: arnd@arndb.de Cc: computersforpeace@gmail.com Cc: linux-mips@linux-mips.org Cc: devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/8836/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index fb14e3729068..e644ac2d6501 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -367,6 +367,10 @@ PHONY += dtbs
367dtbs: scripts 367dtbs: scripts
368 $(Q)$(MAKE) $(build)=arch/mips/boot/dts 368 $(Q)$(MAKE) $(build)=arch/mips/boot/dts
369 369
370PHONY += dtbs_install
371dtbs_install:
372 $(Q)$(MAKE) $(dtbinst)=arch/mips/boot/dts
373
370archprepare: 374archprepare:
371ifdef CONFIG_MIPS32_N32 375ifdef CONFIG_MIPS32_N32
372 @echo ' Checking missing-syscalls for N32' 376 @echo ' Checking missing-syscalls for N32'
@@ -407,6 +411,7 @@ define archhelp
407 echo ' uImage.lzma - U-Boot image (lzma)' 411 echo ' uImage.lzma - U-Boot image (lzma)'
408 echo ' uImage.lzo - U-Boot image (lzo)' 412 echo ' uImage.lzo - U-Boot image (lzo)'
409 echo ' dtbs - Device-tree blobs for enabled boards' 413 echo ' dtbs - Device-tree blobs for enabled boards'
414 echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)'
410 echo 415 echo
411 echo ' These will be default as appropriate for a configured platform.' 416 echo ' These will be default as appropriate for a configured platform.'
412endef 417endef