1# SPDX-License-Identifier: GPL-2.0+
2
3ifdef CONFIG_SANDBOX64
4dtb-$(CONFIG_SANDBOX) += sandbox64.dtb
5else
6dtb-$(CONFIG_SANDBOX) += sandbox.dtb
7endif
8dtb-$(CONFIG_UT_DM) += test.dtb other.dtb
9dtb-$(CONFIG_CMD_EXTENSION) += overlay0.dtbo overlay1.dtbo
10
11include $(srctree)/scripts/Makefile.dts
12
13targets += $(dtb-y)
14
15DTC_FLAGS += -R 4 -p 0x1000
16
17PHONY += dtbs
18dtbs: $(addprefix $(obj)/, $(dtb-y))
19	@:
20
21clean-files := *.dtb *.dtbo
22