Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Andrew Bresticker and committed by
Ralf Baechle
eb2236ea 8c0b9ee8

+5
+5
arch/mips/Makefile
··· 367 367 dtbs: scripts 368 368 $(Q)$(MAKE) $(build)=arch/mips/boot/dts 369 369 370 + PHONY += dtbs_install 371 + dtbs_install: 372 + $(Q)$(MAKE) $(dtbinst)=arch/mips/boot/dts 373 + 370 374 archprepare: 371 375 ifdef CONFIG_MIPS32_N32 372 376 @echo ' Checking missing-syscalls for N32' ··· 411 407 echo ' uImage.lzma - U-Boot image (lzma)' 412 408 echo ' uImage.lzo - U-Boot image (lzo)' 413 409 echo ' dtbs - Device-tree blobs for enabled boards' 410 + echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)' 414 411 echo 415 412 echo ' These will be default as appropriate for a configured platform.' 416 413 endef