diff mbox

[U-Boot,v2,15/27] tools: Include fdt_sw.o in libfdt for mkimage

Message ID 1456206959-29115-16-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass Feb. 23, 2016, 5:55 a.m. UTC
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>
---

Changes in v2: None

 tools/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini March 15, 2016, 11:54 a.m. UTC | #1
On Mon, Feb 22, 2016 at 10:55:47PM -0700, Simon Glass wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/tools/Makefile b/tools/Makefile
index 1382b05..e34df26 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)