aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/Kconfig
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2013-07-07 14:08:30 -0700
committerRonald G. Minnich <rminnich@gmail.com>2013-07-14 20:35:24 +0200
commitccdc005b015f4211d0fa0d45393c5e4104620c53 (patch)
tree0dbd76678638644ed09800783eafb1229fc5777a /src/arch/x86/Kconfig
parent545c0caac8ff5cc5c8cc80b1c4d6dce5a2e17032 (diff)
x86: Add and enable an arch verson of memmove.
This is from memcpy_32.c in the Linux kernel. There was no copyright header in the original file either. Change-Id: Ifd259cb8a87615dce79ed1e551cc4bacb0414b4f Signed-off-by: Gabe Black <gabeblack@chromium.org> Reviewed-on: http://review.coreboot.org/3762 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch/x86/Kconfig')
-rw-r--r--src/arch/x86/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig
index 287e2bcef0..581a0484f7 100644
--- a/src/arch/x86/Kconfig
+++ b/src/arch/x86/Kconfig
@@ -5,6 +5,7 @@ config X86_ARCH_OPTIONS
default y
select HAVE_ARCH_MEMSET
select HAVE_ARCH_MEMCPY
+ select HAVE_ARCH_MEMMOVE
config MARK_GRAPHICS_MEM_WRCOMB
bool "Mark graphics memory as write-combining."