diff options
| author | Simon Glass <sjg@chromium.org> | 2013-05-08 08:06:00 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-05-14 15:37:25 -0400 | 
| commit | 44d3a3066bc789b9a640e71322e593a9983023bb (patch) | |
| tree | 5f78d96c0ad7659d091684ae290538330bbbc132 /common/Makefile | |
| parent | 87ebee39e9d02dba6d36d03d512e7d6e8a5a9abb (diff) | |
| download | olio-uboot-2014.01-44d3a3066bc789b9a640e71322e593a9983023bb.tar.xz olio-uboot-2014.01-44d3a3066bc789b9a640e71322e593a9983023bb.zip | |
image: Split libfdt code into image-fdt.c
The image file is still very large, and some of the code is only used when
libfdt is in use. Move this code into a new file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Makefile')
| -rw-r--r-- | common/Makefile | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/common/Makefile b/common/Makefile index 2f8a6719c..f50bf2ea9 100644 --- a/common/Makefile +++ b/common/Makefile @@ -231,6 +231,7 @@ COBJS-$(CONFIG_BOUNCE_BUFFER) += bouncebuf.o  COBJS-y += console.o  COBJS-y += dlmalloc.o  COBJS-y += image.o +COBJS-$(CONFIG_OF_LIBFDT) += image-fdt.o  COBJS-$(CONFIG_FIT) += image-fit.o  COBJS-y += memsize.o  COBJS-y += stdio.o |