aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2014-10-24 00:16:10 +0000
committerFlorian Fainelli <florian@openwrt.org>2014-10-24 00:16:10 +0000
commit1d93f1cc508dfd541b8489083527c23cb27d4892 (patch)
tree9cc46aecf4c20a33bd85780b324062fcfa4fe760 /target
parentc70b0ac77b5596ebeb47d4e1ab6e350c54b59a6d (diff)
downloadmaster-187ad058-1d93f1cc508dfd541b8489083527c23cb27d4892.tar.gz
master-187ad058-1d93f1cc508dfd541b8489083527c23cb27d4892.tar.bz2
master-187ad058-1d93f1cc508dfd541b8489083527c23cb27d4892.zip
kernel: add a memmove() implementation for MIPS boot decompressor
This is required due to 306-mips_mem_functions_performance.patch, just add a memmove() implementation to satisfy the lzma2 decompressor code. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43036 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/generic/patches-3.14/063-mips_decompressor_memmove.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.14/063-mips_decompressor_memmove.patch b/target/linux/generic/patches-3.14/063-mips_decompressor_memmove.patch
new file mode 100644
index 0000000000..501e11ab47
--- /dev/null
+++ b/target/linux/generic/patches-3.14/063-mips_decompressor_memmove.patch
@@ -0,0 +1,24 @@
+Index: linux-3.14.16/arch/mips/boot/compressed/string.c
+===================================================================
+--- linux-3.14.16.orig/arch/mips/boot/compressed/string.c 2014-08-07 16:50:59.000000000 -0700
++++ linux-3.14.16/arch/mips/boot/compressed/string.c 2014-10-23 16:42:01.015003995 -0700
+@@ -26,3 +26,19 @@
+ ss[i] = c;
+ return s;
+ }
++
++void *memmove(void *__dest, __const void *__src, size_t count)
++{
++ unsigned char *d = __dest;
++ const unsigned char *s = __src;
++
++ if (__dest == __src)
++ return __dest;
++
++ if (__dest < __src)
++ return memcpy(__dest, __src, count);
++
++ while (count--)
++ d[count] = s[count];
++ return __dest;
++}