Revert "armv7-m: use generic memset, memcpy, memmove"

This reverts commit 0e906536ff.

Change-Id: I81c67b5459a9f7010654e633083812b6ab363e59
Reviewed-on: https://chromium-review.googlesource.com/232930
Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Tested-by: Daisuke Nojiri <dnojiri@chromium.org>
Commit-Queue: Daisuke Nojiri <dnojiri@chromium.org>
This commit is contained in:
Daisuke Nojiri 2014-12-03 16:34:55 +00:00 committed by chrome-internal-fetch
commit c3180a9270
2 changed files with 0 additions and 10 deletions

View file

@ -48,11 +48,9 @@ bootblock-y += id.S
bootblock-y += clock.c
bootblock-y += stages.c
bootblock-y += eabi_compat.c
ifneq ($(CONFIG_ARCH_BOOTBLOCK_ARM_V7_M),y)
bootblock-y += memset.S
bootblock-y += memcpy.S
bootblock-y += memmove.S
endif
bootblock-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
$(objcbfs)/bootblock.debug: $$(bootblock-objs)
@ -74,11 +72,9 @@ $(objcbfs)/verstage.debug: $$(verstage-objs) $$(VB2_LIB)
verstage-$(CONFIG_EARLY_CONSOLE) += early_console.c
verstage-y += div0.c
verstage-y += eabi_compat.c
ifneq ($(CONFIG_ARCH_VERSTAGE_ARM_V7_M),y)
verstage-y += memset.S
verstage-y += memcpy.S
verstage-y += memmove.S
endif
verstage-y += stages.c
verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c

View file

@ -22,9 +22,6 @@ bootblock-$(CONFIG_COMMON_CBFS_SPI_WRAPPER) += cbfs_spi.c
bootblock-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
bootblock-y += memchr.c
bootblock-y += memcmp.c
ifeq ($(CONFIG_ARCH_BOOTBLOCK_ARM_V7_M),y)
bootblock-y += memset.c memcpy.c memmove.c
endif
bootblock-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
bootblock-$(CONFIG_GENERIC_UDELAY) += timer.c
@ -45,9 +42,6 @@ $(foreach arch,$(ARCH_SUPPORTED),\
verstage-y += delay.c
verstage-y += cbfs.c
verstage-y += memcmp.c
ifeq ($(CONFIG_ARCH_VERSTAGE_ARM_V7_M),y)
verstage-y += memset.c memcpy.c memmove.c
endif
verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
verstage-$(CONFIG_COMMON_CBFS_SPI_WRAPPER) += cbfs_spi.c
verstage-y += tlcl.c