blob: 790f3c508f19c5d13ded8edcf78adaa888fcdbe9 [file] [log] [blame]
Rasmus Villemoes3609e1d2022-01-10 14:34:41 +01001# SPDX-License-Identifier: GPL-2.0+
2
Rasmus Villemoes6923f492023-05-04 13:33:08 +02003dtb-y += $(patsubst %,%.dtb,$(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE) $(CONFIG_OF_LIST) $(CONFIG_SPL_OF_LIST)))
Caleb Connolly0525cb22024-04-18 19:39:58 +01004
5ifeq ($(CONFIG_OF_UPSTREAM_BUILD_VENDOR),y)
6ifeq ($(CONFIG_ARM64),y)
7dt_dir := $(srctree)/dts/upstream/src/arm64
8else
9dt_dir := $(srctree)/dts/upstream/src/$(ARCH)
10endif
11
12dtb-vendor_dts := $(patsubst %.dts,%.dtb,$(wildcard $(dt_dir)/$(subst ",,$(CONFIG_OF_UPSTREAM_VENDOR))/*.dts))
13
14dtb-y += $(subst $(dt_dir)/,,$(dtb-vendor_dts))
15
16endif