xref: /linux/scripts/Makefile.dtbinst (revision ac84bac4062e7fc24f5e2c61c6a414b2a00a29ad)
1# SPDX-License-Identifier: GPL-2.0
2# ==========================================================================
3# Installing dtb files
4#
5# Installs all dtb files listed in $(dtb-y) either in the
6# INSTALL_DTBS_PATH directory or the default location:
7#
8#   $INSTALL_PATH/dtbs/$KERNELRELEASE
9# ==========================================================================
10
11src := $(obj)
12
13PHONY := __dtbs_install
14__dtbs_install:
15
16include include/config/auto.conf
17include scripts/Kbuild.include
18include $(src)/Makefile
19
20dtbs    := $(addprefix $(dst)/, $(dtb-y) $(if $(CONFIG_OF_ALL_DTBS),$(dtb-)))
21subdirs := $(addprefix $(obj)/, $(subdir-y) $(subdir-m))
22
23__dtbs_install: $(dtbs) $(subdirs)
24	@:
25
26quiet_cmd_dtb_install = INSTALL $@
27      cmd_dtb_install = install -D $< $@
28
29$(dst)/%.dtb: $(obj)/%.dtb
30	$(call cmd,dtb_install)
31
32PHONY += $(subdirs)
33$(subdirs):
34	$(Q)$(MAKE) $(dtbinst)=$@ dst=$(patsubst $(obj)/%,$(dst)/%,$@)
35
36.PHONY: $(PHONY)
37