From: Stefan Roese Date: Thu, 5 Jan 2012 09:53:09 +0000 (+0100) Subject: SPL: common/Makefile: Add image.c to SPL build X-Git-Tag: v2012.07-rc1~11^2~13 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=22b7cfff326b5de5bfe94d676d9051a115c6aad1;p=u-boot 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 --- diff --git a/common/Makefile b/common/Makefile index 31175e34d3..483eb4daa3 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