2 # Copyright (c) 2011 The Chromium OS Authors.
4 # SPDX-License-Identifier: GPL-2.0+
7 # This Makefile builds the internal U-Boot fdt if CONFIG_OF_CONTROL is
8 # enabled. See doc/README.fdt-control for more details.
10 DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
11 ifeq ($(DEVICE_TREE),)
15 DTB := arch/$(ARCH)/dts/$(DEVICE_TREE).dtb
17 $(obj)/dt.dtb: $(DTB) FORCE
18 $(call if_changed,shipped)
25 echo >&2 "Device Tree Source is not correctly specified."; \
26 echo >&2 "Please define 'CONFIG_DEFAULT_DEVICE_TREE'"; \
27 echo >&2 "or build with 'DEVICE_TREE=<device_tree>' argument"; \
32 $(Q)$(MAKE) $(build)=arch/$(ARCH)/dts dtbs
34 .SECONDARY: $(obj)/dt.dtb.S
36 obj-$(CONFIG_OF_EMBED) := dt.dtb.o
41 clean-files := dt.dtb.S
43 # Let clean descend into dts directories
44 subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/sandbox/dts ../arch/x86/dts