diff mbox

[U-Boot,3/7] SPL: lib/Makefile: Add crc32.c to SPL build

Message ID 1336462219-21362-1-git-send-email-sr@denx.de
State Accepted
Commit aca587b0dad5f760e7db0a49e928fd87affcd123
Headers show

Commit Message

Stefan Roese May 8, 2012, 7:30 a.m. UTC
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>
---
 lib/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/lib/Makefile b/lib/Makefile
index a0fec60..9afa053 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -36,7 +36,6 @@  COBJS-$(CONFIG_BZIP2) += bzlib_huffman.o
 COBJS-$(CONFIG_USB_TTY) += circbuf.o
 COBJS-y += crc7.o
 COBJS-y += crc16.o
-COBJS-y += crc32.o
 COBJS-y += display_options.o
 COBJS-y += errno.o
 COBJS-$(CONFIG_OF_CONTROL) += fdtdec.o
@@ -59,6 +58,7 @@  endif
 ifdef CONFIG_SPL_BUILD
 COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16.o
 endif
+COBJS-y += crc32.o
 COBJS-y += ctype.o
 COBJS-y += div64.o
 COBJS-y += string.o