locking/atomic: Correct (cmp)xchg() instrumentation
[linux-block.git] / scripts / Makefile.dtbinst
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
9fb5e537
RR
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
9fb5e537
RR
9# ==========================================================================
10
11src := $(obj)
12
13PHONY := __dtbs_install
14__dtbs_install:
15
16include include/config/auto.conf
3204a7fb 17include $(srctree)/scripts/Kbuild.include
a2430b25 18include $(kbuild-file)
9fb5e537 19
aefd8030
MY
20dtbs := $(addprefix $(dst)/, $(dtb-y) $(if $(CONFIG_OF_ALL_DTBS),$(dtb-)))
21subdirs := $(addprefix $(obj)/, $(subdir-y) $(subdir-m))
9fb5e537 22
aefd8030
MY
23__dtbs_install: $(dtbs) $(subdirs)
24 @:
323a028d 25
aefd8030
MY
26quiet_cmd_dtb_install = INSTALL $@
27 cmd_dtb_install = install -D $< $@
9fb5e537 28
aefd8030
MY
29$(dst)/%.dtb: $(obj)/%.dtb
30 $(call cmd,dtb_install)
9fb5e537 31
ce88c9c7
VK
32$(dst)/%.dtbo: $(obj)/%.dtbo
33 $(call cmd,dtb_install)
34
aefd8030
MY
35PHONY += $(subdirs)
36$(subdirs):
37 $(Q)$(MAKE) $(dtbinst)=$@ dst=$(patsubst $(obj)/%,$(dst)/%,$@)
9fb5e537
RR
38
39.PHONY: $(PHONY)