Add an implementation for the memchr library function

Change-Id: Icded479d246f7cce8a3d2154c69f75178fa513e1
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-on: http://review.coreboot.org/708
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Mathias Krause <minipli@googlemail.com>
This commit is contained in:
Gabe Black
2011-09-16 02:18:56 -07:00
committed by Mathias Krause
parent 8ebd11eab9
commit 1025f3afc8
3 changed files with 14 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
romstage-y += memset.c
romstage-y += memchr.c
romstage-y += memcpy.c
romstage-y += memcmp.c
romstage-y += cbfs.c
@@ -15,6 +16,7 @@ romstage-$(CONFIG_CONSOLE_NE2K) += compute_ip_checksum.c
romstage-$(CONFIG_USBDEBUG) += usbdebug.c
ramstage-y += memset.c
ramstage-y += memchr.c
ramstage-y += memcpy.c
ramstage-y += memcmp.c
ramstage-y += memmove.c