1# SPDX-License-Identifier: GPL-2.0+
2
3dtb-y += $(shell echo $(CONFIG_DEFAULT_DEVICE_TREE)).dtb
4
5include $(srctree)/scripts/Makefile.dts
6
7targets += $(dtb-y)
8
9DTC_FLAGS += -R 4 -p 0x1000
10
11PHONY += dtbs
12dtbs: $(addprefix $(obj)/, $(dtb-y))
13	@:
14
15clean-files := *.dtb
16