]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - dts/Makefile
dts: re-write dts/Makefile more simply with Kbuild
[karo-tx-uboot.git] / dts / Makefile
1 #
2 # Copyright (c) 2011 The Chromium OS Authors.
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 # This Makefile builds the internal U-Boot fdt if CONFIG_OF_CONTROL is
8 # enabled. See doc/README.fdt-control for more details.
9
10 DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
11 ifeq ($(DEVICE_TREE),)
12 DEVICE_TREE := notfound
13 endif
14
15 DTS := $(srctree)/board/$(VENDOR)/dts/$(DEVICE_TREE).dts
16
17 DTC_FLAGS += -i $(srctree)/arch/$(ARCH)/dts -R 4 -p 0x1000
18
19 $(obj)/dt.dtb: $(DTS) FORCE
20         $(call if_changed_dep,dtc)
21
22 targets += dt.dtb
23
24 $(DTS):
25         @echo >&2
26         @echo >&2 "Device Tree Source is not specified."
27         @echo >&2 "Please define 'CONFIG_DEFAULT_DEVICE_TREE'"
28         @echo >&2 "or build with 'DEVICE_TREE=<dts-file-name>' argument"
29         @/bin/false
30
31 .SECONDARY: $(obj)/dt.dtb.S
32
33 obj-$(CONFIG_OF_EMBED) := dt.dtb.o
34
35 dtbs: $(obj)/dt.dtb
36         @:
37
38 clean-files := dt.dtb.S