diff options
| author | Masahiro Yamada <[email protected]> | 2020-04-16 18:30:16 +0900 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2020-04-26 14:23:39 -0600 |
| commit | bcbdab70a2863355aa1b9a39abdd973202abc818 (patch) | |
| tree | c8f9635a68d874a5e8ad75f14412158a0f3d20ba /lib/libfdt/Makefile | |
| parent | d202f67db0771247de562af5d6a5df778702857b (diff) | |
libfdt: migrate fdt_ro.c to a wrapper of scripts/dtc/libfdt/fdt_ro.c
There is no essential difference between scripts/dtc/libfdt/fdt_ro.c
and lib/libfdt/fdt_ro.c
Migrate to a simple wrapper like the other files.
Signed-off-by: Masahiro Yamada <[email protected]>
Diffstat (limited to 'lib/libfdt/Makefile')
| -rw-r--r-- | lib/libfdt/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libfdt/Makefile b/lib/libfdt/Makefile index 5d3ae4e2f13..878659f99e6 100644 --- a/lib/libfdt/Makefile +++ b/lib/libfdt/Makefile @@ -3,9 +3,9 @@ # (C) Copyright 2000-2007 # Wolfgang Denk, DENX Software Engineering, [email protected]. -# Use upstream code. obj-y += \ fdt.o \ + fdt_ro.o \ fdt_wip.o \ fdt_strerror.o \ fdt_sw.o \ @@ -15,10 +15,6 @@ obj-y += \ obj-$(CONFIG_OF_LIBFDT_OVERLAY) += fdt_overlay.o -# Locally modified for U-Boot. -# TODO: split out the local modifiction. -obj-y += fdt_ro.o - # U-Boot own file obj-y += fdt_region.o |
