diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-11-27 16:06:07 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-12-04 09:59:02 -0500 |
commit | 26e961c8cfdff00c5c9389d301d9a2eb10eb844c (patch) | |
tree | 0f80baccdc35ea27eda051f9667e46954c9b11c4 /lib/libfdt/Makefile | |
parent | 87be1e9fb4dcc130e90d497cc5ce49c715efc6c2 (diff) |
libfdt: migrate fdt_wip.c to a wrapper of scripts/dtc/libfdt/fdt_wip.c
Now, lib/libfdt/fdt_wip.c is the same as scripts/dtc/libfdt/fdt_wip.c
Change the former to a wrapper of the latter.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/libfdt/Makefile')
-rw-r--r-- | lib/libfdt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfdt/Makefile b/lib/libfdt/Makefile index 369bbf9ba3..be42e946b7 100644 --- a/lib/libfdt/Makefile +++ b/lib/libfdt/Makefile @@ -8,6 +8,7 @@ # Use upstream code. obj-y += \ fdt.o \ + fdt_wip.o \ fdt_strerror.o \ fdt_sw.o \ fdt_empty_tree.o \ @@ -19,8 +20,7 @@ obj-$(CONFIG_OF_LIBFDT_OVERLAY) += fdt_overlay.o # TODO: split out the local modifiction. obj-y += \ fdt_ro.o \ - fdt_rw.o \ - fdt_wip.o \ + fdt_rw.o # U-Boot own file obj-y += fdt_region.o |