diff options
author | Simon Glass <sjg@chromium.org> | 2014-06-12 07:24:43 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-19 11:18:56 -0400 |
commit | d18926af30d111362c6262c356feb768d7a367a3 (patch) | |
tree | 62a43369523f172e040567c65ad44d5403364d30 /dts/Makefile | |
parent | 597a8b2c68574970dc38c55abe07712b6045776a (diff) |
fdt: Rename the DEV_TREE_BIN Makefile flag to to EXT_DTB
This seems like a better name. This is a patch-up to the earlier commit
63b4b5b, and also removes a redundant Makefile change.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'dts/Makefile')
-rw-r--r-- | dts/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dts/Makefile b/dts/Makefile index f344efe64b8..d3122aa3b96 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -12,8 +12,8 @@ ifeq ($(DEVICE_TREE),) DEVICE_TREE := unset endif -ifneq ($(DEV_TREE_BIN),) -DTB := $(DEV_TREE_BIN) +ifneq ($(EXT_DTB),) +DTB := $(EXT_DTB) else DTB := arch/$(ARCH)/dts/$(DEVICE_TREE).dtb endif |