aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-11-02 18:12:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-11-02 18:12:16 +0000
commit014194de605990c6bdce52e03ee3dc1df13c45e8 (patch)
treec65577c3a956dad1d4d1b05e6d62c2f331218e80 /toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch
parent02df774b52e4a0c0b9a8395e55263b80eb8f5f93 (diff)
downloadupstream-014194de605990c6bdce52e03ee3dc1df13c45e8.tar.gz
upstream-014194de605990c6bdce52e03ee3dc1df13c45e8.tar.bz2
upstream-014194de605990c6bdce52e03ee3dc1df13c45e8.zip
uclibc: remove version 0.9.33
Latest uClibc-ng is now the only supported option Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47357
Diffstat (limited to 'toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch')
-rw-r--r--toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch b/toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch
deleted file mode 100644
index 7edeee17d0..0000000000
--- a/toolchain/uClibc/patches-0.9.33.2/612-mips64_relocation_fix.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 052bcf13afb067cafac5e7f4fc21fbad2b34b11f
-Author: Waldemar Brodkorb <wbx@openadk.org>
-Date: Wed Nov 27 09:55:51 2013 +0100
-
- Fix for SIGBUS error on MIPS64 with N64 ABI
-
- When accessing errno, a per thread variable, from _stdio_init
- a SIGBUS error happens. This change fixes the wrong relocation
- and debug output.
-
- Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
- Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-
---- a/ldso/ldso/mips/elfinterp.c
-+++ b/ldso/ldso/mips/elfinterp.c
-@@ -259,11 +259,11 @@ int _dl_parse_relocation_information(str
- case R_MIPS_TLS_TPREL32:
- case R_MIPS_TLS_TPREL64:
- CHECK_STATIC_TLS((struct link_map *)tls_tpnt);
-- *(ElfW(Word) *)reloc_addr +=
-+ *(ElfW(Addr) *)reloc_addr +=
- TLS_TPREL_VALUE (tls_tpnt, symbol_addr);
- #ifdef __SUPPORT_LD_DEBUG__
- _dl_dprintf(2, "TLS_TPREL : %s, %x, %x\n",
-- symname, old_val, *((unsigned int *)reloc_addr));
-+ symname, old_val, *((unsigned long *)reloc_addr));
- #endif
- break;
- }