diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-23 23:14:33 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-24 07:33:03 -0400 |
commit | 1f6049e2501b5c35c61435dbc05ba96743202674 (patch) | |
tree | adfea6d93ee1378a71fed7596562da3ce975c359 /tools/Makefile | |
parent | 36dd5f1b8abcd0aa5f8490b3ef1e4e7ecce2eb8c (diff) |
tools/mkimage: Make the path to the dtc binary that mkimage calls configurable
In some cases, such as FreeBSD, the path to an alternative dtc needs to
be used. Rather than override the one given in the Makefile on the
command line, make this part of the build configuration.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index a0db19d6b05..c16477459d2 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -175,7 +175,7 @@ HOSTCFLAGS_rsa-sign.o += -Wno-deprecated-declarations endif endif -HOSTCFLAGS_fit_image.o += -DMKIMAGE_DTC=\"$(DTC)\" +HOSTCFLAGS_fit_image.o += -DMKIMAGE_DTC=\"$(CONFIG_MKIMAGE_DTC_PATH)\" HOSTLOADLIBES_dumpimage := $(HOSTLOADLIBES_mkimage) HOSTLOADLIBES_fit_info := $(HOSTLOADLIBES_mkimage) |