diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-22 22:55:47 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-14 19:18:27 -0400 |
commit | e2070a896184e0ea778edd4f8f0ca43a618e64d8 (patch) | |
tree | 44953e98bdd141f96c5c1515c84b38b97b98db95 /tools | |
parent | 2af25b747340c6c8f6a6b9e27632db577bf4da52 (diff) | |
download | u-boot-e2070a896184e0ea778edd4f8f0ca43a618e64d8.tar.gz |
tools: Include fdt_sw.o in libfdt for mkimage
At present this file is omitted. It is used to build up a binary device
tree. We plan to do this in mkimage, so include this file in the build.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 2881a7c439..1e4b4aaa02 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -59,7 +59,7 @@ FIT_SIG_OBJS-$(CONFIG_FIT_SIGNATURE) := common/image-sig.o # Flattened device tree objects LIBFDT_OBJS := $(addprefix lib/libfdt/, \ fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_wip.o \ - fdt_region.o) + fdt_region.o fdt_sw.o) RSA_OBJS-$(CONFIG_FIT_SIGNATURE) := $(addprefix lib/rsa/, \ rsa-sign.o rsa-verify.o rsa-checksum.o \ rsa-mod-exp.o) |