summaryrefslogtreecommitdiff
path: root/patches/uClibc/0.9.30/110-arm_fix_alignment.patch
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2015-11-10 06:47:17 (GMT)
committerBryan Hundven <bryanhundven@gmail.com>2015-11-11 16:27:33 (GMT)
commit930fa77076874655179341433b4f8066deefb0b8 (patch)
treea4f0045b6706d203eb89ee22654b56d0f7448565 /patches/uClibc/0.9.30/110-arm_fix_alignment.patch
parent83403825ee654bcf214a9329d429bcf9603acad5 (diff)
uClibc: Reduce supported versions
This commit reduces the number of supported versions to: * 0.9.33.2 * custom location Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'patches/uClibc/0.9.30/110-arm_fix_alignment.patch')
-rw-r--r--patches/uClibc/0.9.30/110-arm_fix_alignment.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/patches/uClibc/0.9.30/110-arm_fix_alignment.patch b/patches/uClibc/0.9.30/110-arm_fix_alignment.patch
deleted file mode 100644
index 0d72e7f..0000000
--- a/patches/uClibc/0.9.30/110-arm_fix_alignment.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Original patch from Gentoo.
-
--= BEGIN original header =-
-ARMV5 can use STRD and LDRD access instructions but these accesses need to be
-8 byte aligned. The dynamic linker's malloc needs to match this so structures
-become 8 byte aligned to void unaligned accesses.
-
-RP - 14/02/2008
-
--= END original header =-
-
-diff -durN uClibc-0.9.30.orig/ldso/ldso/arm/dl-sysdep.h uClibc-0.9.30/ldso/ldso/arm/dl-sysdep.h
---- uClibc-0.9.30.orig/ldso/ldso/arm/dl-sysdep.h 2008-09-25 10:35:20.000000000 +0200
-+++ uClibc-0.9.30/ldso/ldso/arm/dl-sysdep.h 2009-02-07 09:57:59.000000000 +0100
-@@ -15,6 +15,8 @@
- GOT_BASE[1] = (unsigned long) MODULE; \
- }
-
-+#define DL_MALLOC_ALIGN 8 /* EABI needs 8 byte alignment for STRD LDRD*/
-+
- static __inline__ unsigned long arm_modulus(unsigned long m, unsigned long p)
- {
- unsigned long i,t,inc;