summaryrefslogtreecommitdiffstats
path: root/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2010-05-02 16:33:34 +0000
committerNicolas Thill <nico@openwrt.org>2010-05-02 16:33:34 +0000
commita09235eca6c3c16fcafbd64765d8ec3047388ee0 (patch)
treef2235bb2c3cb1c2591ade3b14ff190a562001038 /target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
parente6bf527f827f606f7106666c4811ccf35b6de238 (diff)
downloadmaster-31e0f0ae-a09235eca6c3c16fcafbd64765d8ec3047388ee0.tar.gz
master-31e0f0ae-a09235eca6c3c16fcafbd64765d8ec3047388ee0.tar.bz2
master-31e0f0ae-a09235eca6c3c16fcafbd64765d8ec3047388ee0.zip
target/uml: bump to 2.6.32.12
SVN-Revision: 21301
Diffstat (limited to 'target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch')
-rw-r--r--target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch b/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
deleted file mode 100644
index 7d2efe4622..0000000000
--- a/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/arch/um/os-Linux/user_syms.c
-+++ b/arch/um/os-Linux/user_syms.c
-@@ -23,7 +23,7 @@ extern int printf(const char *, ...);
- EXPORT_SYMBOL(strstr);
- #endif
-
--#ifndef __x86_64__
-+#if !defined(__x86_64) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) || (__GNUC__ < 4)
- extern void *memcpy(void *, const void *, size_t);
- EXPORT_SYMBOL(memcpy);
- #endif