diff options
author | Bartlomiej Sieka <tur@semihalf.com> | 2008-03-14 16:22:34 +0100 |
---|---|---|
committer | Bartlomiej Sieka <tur@semihalf.com> | 2008-03-14 16:22:34 +0100 |
commit | 0ede0c383530a418cf98be9122371a86573cd0db (patch) | |
tree | ad8de959a273b9bcdc01041bbe18b8713c895ccf /lib_generic/Makefile | |
parent | 7e492d8258182e31c988bbf9917d4a3d41949d56 (diff) | |
download | u-boot-imx-0ede0c383530a418cf98be9122371a86573cd0db.zip u-boot-imx-0ede0c383530a418cf98be9122371a86573cd0db.tar.gz u-boot-imx-0ede0c383530a418cf98be9122371a86573cd0db.tar.bz2 |
Add the MD5 algorithm
MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
calculated using the md5() function -- see include/md5.h for details.
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
Diffstat (limited to 'lib_generic/Makefile')
-rw-r--r-- | lib_generic/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib_generic/Makefile b/lib_generic/Makefile index b10793b..abee19a 100644 --- a/lib_generic/Makefile +++ b/lib_generic/Makefile @@ -36,6 +36,7 @@ COBJS-y += display_options.o COBJS-y += div64.o COBJS-y += lmb.o COBJS-y += ldiv.o +COBJS-$(CONFIG_MD5) += md5.o COBJS-y += sha1.o COBJS-y += string.o COBJS-y += vsprintf.o |