mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-20 22:21:41 +00:00
SPL: lib/Makefile: Add crc32.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>
This commit is contained in:
parent
22b7cfff32
commit
aca587b0da
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,6 @@ COBJS-$(CONFIG_BZIP2) += bzlib_huffman.o
|
||||||
COBJS-$(CONFIG_USB_TTY) += circbuf.o
|
COBJS-$(CONFIG_USB_TTY) += circbuf.o
|
||||||
COBJS-y += crc7.o
|
COBJS-y += crc7.o
|
||||||
COBJS-y += crc16.o
|
COBJS-y += crc16.o
|
||||||
COBJS-y += crc32.o
|
|
||||||
COBJS-y += display_options.o
|
COBJS-y += display_options.o
|
||||||
COBJS-y += errno.o
|
COBJS-y += errno.o
|
||||||
COBJS-$(CONFIG_OF_CONTROL) += fdtdec.o
|
COBJS-$(CONFIG_OF_CONTROL) += fdtdec.o
|
||||||
|
@ -60,6 +59,7 @@ endif
|
||||||
ifdef CONFIG_SPL_BUILD
|
ifdef CONFIG_SPL_BUILD
|
||||||
COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16.o
|
COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16.o
|
||||||
endif
|
endif
|
||||||
|
COBJS-y += crc32.o
|
||||||
COBJS-y += ctype.o
|
COBJS-y += ctype.o
|
||||||
COBJS-y += div64.o
|
COBJS-y += div64.o
|
||||||
COBJS-y += string.o
|
COBJS-y += string.o
|
||||||
|
|
Loading…
Add table
Reference in a new issue