summaryrefslogtreecommitdiffstats
path: root/target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-05-02 16:33:34 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-05-02 16:33:34 +0000
commit71f6198448a70ba306a061f2f4c6a3ed3698dc33 (patch)
tree596dd435470795eb60ccc5cddf28a025796281d7 /target/linux/uml/patches-2.6.30/003-fix_memcpy_export_on_x86_64.patch
parent43229c90ac887bb7e23e50aaa9e111a1a765c81c (diff)
target/uml: bump to 2.6.32.12
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21301 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 7d2efe462..000000000
--- 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