aboutsummaryrefslogtreecommitdiffstats
path: root/dts
diff options
context:
space:
mode:
authorJagannadha Sutradharudu Teki2013-02-28 04:20:18 -0600
committerTom Rini2013-04-02 15:23:34 -0500
commit74de8c9a1672be6c41a6815f484b5958f8241af4 (patch)
tree2f40fd8fa91880964d323cd7113fcd3f535f2c2c /dts
parent472d546054dadacca91530bad42ad06f6408124e (diff)
downloadu-boot-74de8c9a1672be6c41a6815f484b5958f8241af4.tar.gz
u-boot-74de8c9a1672be6c41a6815f484b5958f8241af4.tar.xz
u-boot-74de8c9a1672be6c41a6815f484b5958f8241af4.zip
dts/Makefile: Build the user specified dts
This patch provides a support to build the user specified dts. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'dts')
-rw-r--r--dts/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/dts/Makefile b/dts/Makefile
index 6f36153634..03e163ef0a 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -27,9 +27,11 @@ include $(TOPDIR)/config.mk
27 27
28LIB = $(obj)libdts.o 28LIB = $(obj)libdts.o
29 29
30ifeq ($(DEVICE_TREE),)
30$(if $(CONFIG_DEFAULT_DEVICE_TREE),,\ 31$(if $(CONFIG_DEFAULT_DEVICE_TREE),,\
31$(error Please define CONFIG_DEFAULT_DEVICE_TREE in your board header file)) 32$(error Please define CONFIG_DEFAULT_DEVICE_TREE in your board header file))
32DEVICE_TREE = $(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE)) 33DEVICE_TREE = $(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE))
34endif
33 35
34$(if $(CONFIG_ARCH_DEVICE_TREE),,\ 36$(if $(CONFIG_ARCH_DEVICE_TREE),,\
35$(error Your architecture does not have device tree support enabled. \ 37$(error Your architecture does not have device tree support enabled. \