diff options
author | Stefan Roese <sr@denx.de> | 2012-01-05 10:53:09 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:43 +0200 |
commit | 22b7cfff326b5de5bfe94d676d9051a115c6aad1 (patch) | |
tree | bb2e99c5f1dbc9adbe2758ea362f7377899c160b | |
parent | fe901f2d9bd09292a67e562b8c96a1a496004c9e (diff) | |
download | u-boot-imx-22b7cfff326b5de5bfe94d676d9051a115c6aad1.zip u-boot-imx-22b7cfff326b5de5bfe94d676d9051a115c6aad1.tar.gz u-boot-imx-22b7cfff326b5de5bfe94d676d9051a115c6aad1.tar.bz2 |
SPL: common/Makefile: Add image.c to SPL build
This is needed for the SPEAr SPL support, as SPEAr uses the mkimage
header to wrap and validate the images (SPL & U-Boot).
Signed-off-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Makefile b/common/Makefile index 31175e3..483eb4d 100644 --- a/common/Makefile +++ b/common/Makefile @@ -31,7 +31,6 @@ COBJS-y += main.o COBJS-y += command.o COBJS-y += exports.o COBJS-$(CONFIG_SYS_HUSH_PARSER) += hush.o -COBJS-y += image.o COBJS-y += s_record.o COBJS-$(CONFIG_SERIAL_MULTI) += serial.o COBJS-y += xyzModem.o @@ -191,6 +190,7 @@ COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += xyzModem.o endif COBJS-y += console.o COBJS-y += dlmalloc.o +COBJS-y += image.o COBJS-y += memsize.o COBJS-y += stdio.o |