From 4ed6552f715983bfc7d212c1199a1f796f1144ad Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Wed, 27 Feb 2008 21:51:47 -0600 Subject: [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images Introduce the LMB lib used on PPC in the kernel as a clean way to manage the memory spaces used by various boot images and structures. This code will allow us to simplify the code in bootm and its support functions. Signed-off-by: Kumar Gala --- lib_generic/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'lib_generic/Makefile') diff --git a/lib_generic/Makefile b/lib_generic/Makefile index 9713353ddf..b10793bd4c 100644 --- a/lib_generic/Makefile +++ b/lib_generic/Makefile @@ -34,6 +34,7 @@ COBJS-y += crc32.o COBJS-y += ctype.o COBJS-y += display_options.o COBJS-y += div64.o +COBJS-y += lmb.o COBJS-y += ldiv.o COBJS-y += sha1.o COBJS-y += string.o -- cgit From 0ede0c383530a418cf98be9122371a86573cd0db Mon Sep 17 00:00:00 2001 From: Bartlomiej Sieka Date: Fri, 14 Mar 2008 16:22:34 +0100 Subject: 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 --- lib_generic/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'lib_generic/Makefile') diff --git a/lib_generic/Makefile b/lib_generic/Makefile index b10793bd4c..abee19a2bb 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 -- cgit