diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2013-05-29 13:12:20 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-07-10 21:50:14 +0200 |
commit | ff7c8e82d10a48f7d123755b33bef9ffbf01d90d (patch) | |
tree | bb4207b47f05601ca08dd9320557069f553a3e1d /src/arch/armv7/Kconfig | |
parent | e6a44ebb29d7fb9ac6bbef0db4bd0e3100a72f55 (diff) |
armv7a: Enable native memcpy / memset
The code has been there for quite a while but was never enabled.
Change-Id: I4ec3dcbb3c03805ac5c75872614e5d394df667cf
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Signed-off-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/3675
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/arch/armv7/Kconfig')
-rw-r--r-- | src/arch/armv7/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/arch/armv7/Kconfig b/src/arch/armv7/Kconfig index 7f4d75e270..633c5ef98d 100644 --- a/src/arch/armv7/Kconfig +++ b/src/arch/armv7/Kconfig @@ -32,4 +32,12 @@ config UPDATE_IMAGE is a suitable file for further processing. The bootblock will not be modified. +config HAVE_ARCH_MEMSET + bool + default y + +config HAVE_ARCH_MEMCPY + bool + default y + endmenu |