diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-18 20:08:55 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-01 07:03:06 -0600 |
commit | 8b50d526ea5b1e74934cddf6f1ee830a72401b79 (patch) | |
tree | 3ce364b7b812bcaad7a334761089e1e52b107c21 /lib/Makefile | |
parent | 644ec0a933ef5c4f8e82b9fd8df9439386d0444d (diff) | |
download | u-boot-8b50d526ea5b1e74934cddf6f1ee830a72401b79.tar.gz |
dm: Add a function to create a 'live' device tree
This function converts the flat device tree into a hierarchical one with
C structures and pointers. This is easier to access.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 328b4a25c3..eacc7d6485 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -15,6 +15,7 @@ obj-$(CONFIG_ZLIB) += zlib/ obj-$(CONFIG_BZIP2) += bzip2/ obj-$(CONFIG_TIZEN) += tizen/ obj-$(CONFIG_FIT) += libfdt/ +obj-$(CONFIG_OF_LIVE) += of_live.o obj-$(CONFIG_CMD_DHRYSTONE) += dhry/ obj-$(CONFIG_AES) += aes.o |