* [PATCH] fix for bug 2577
@ 2012-09-24 11:04 Andrei Dinu
2012-09-24 11:08 ` Andrei Dinu
2012-09-24 11:15 ` Henning Heinold
0 siblings, 2 replies; 3+ messages in thread
From: Andrei Dinu @ 2012-09-24 11:04 UTC (permalink / raw)
To: openembedded-core
Upstream status : pending
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
---
.../eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch | 25 ++++++++++++++++++++
meta/recipes-core/eglibc/eglibc_2.16.bb | 1 +
2 files changed, 26 insertions(+)
create mode 100644 meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
diff --git a/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch b/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
new file mode 100644
index 0000000..f2480e5
--- /dev/null
+++ b/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
@@ -0,0 +1,25 @@
+From 73890569c5048aef34d9a6f08907895a53211d72 Mon Sep 17 00:00:00 2001
+From: Andrei Dinu <andrei.adrianx.dinu@intel.com>
+Date: Mon, 24 Sep 2012 10:21:49 +0300
+Subject: [PATCH] updated version
+
+Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
+---
+ .../libc/ports/sysdeps/arm/dl-machine.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+ndex 8d905e8..dcfa71e 100644
+--- libc.orig/ports/sysdeps/arm/dl-machine.h
++++ libc/ports/sysdeps/arm/dl-machine.h
+@@ -503,7 +503,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
+
+ case R_ARM_TLS_DTPOFF32:
+ if (sym != NULL)
+- *reloc_addr += sym->st_value;
++ *reloc_addr = sym->st_value;
+ break;
+
+ case R_ARM_TLS_TPOFF32:
+--
+1.7.9.5
+
diff --git a/meta/recipes-core/eglibc/eglibc_2.16.bb b/meta/recipes-core/eglibc/eglibc_2.16.bb
index 78dc44a..68da385 100644
--- a/meta/recipes-core/eglibc/eglibc_2.16.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.16.bb
@@ -29,6 +29,7 @@ SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};protocol=h
file://0001-eglibc-menuconfig-support.patch \
file://0002-eglibc-menuconfig-hex-string-options.patch \
file://0003-eglibc-menuconfig-build-instructions.patch \
+ file://0001-R_ARM_TLS_DTPOFF32.patch \
"
LIC_FILES_CHKSUM = "file://LICENSES;md5=98a1128c4b58120182cbea3b1752d8b9 \
file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] fix for bug 2577
2012-09-24 11:04 [PATCH] fix for bug 2577 Andrei Dinu
@ 2012-09-24 11:08 ` Andrei Dinu
2012-09-24 11:15 ` Henning Heinold
1 sibling, 0 replies; 3+ messages in thread
From: Andrei Dinu @ 2012-09-24 11:08 UTC (permalink / raw)
To: Andrei Dinu; +Cc: openembedded-core
Please ignore. will resend.
On 09/24/2012 02:04 PM, Andrei Dinu wrote:
> Upstream status : pending
>
> Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> ---
> .../eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch | 25 ++++++++++++++++++++
> meta/recipes-core/eglibc/eglibc_2.16.bb | 1 +
> 2 files changed, 26 insertions(+)
> create mode 100644 meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
>
> diff --git a/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch b/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
> new file mode 100644
> index 0000000..f2480e5
> --- /dev/null
> +++ b/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
> @@ -0,0 +1,25 @@
> +From 73890569c5048aef34d9a6f08907895a53211d72 Mon Sep 17 00:00:00 2001
> +From: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> +Date: Mon, 24 Sep 2012 10:21:49 +0300
> +Subject: [PATCH] updated version
> +
> +Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> +---
> + .../libc/ports/sysdeps/arm/dl-machine.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +ndex 8d905e8..dcfa71e 100644
> +--- libc.orig/ports/sysdeps/arm/dl-machine.h
> ++++ libc/ports/sysdeps/arm/dl-machine.h
> +@@ -503,7 +503,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
> +
> + case R_ARM_TLS_DTPOFF32:
> + if (sym != NULL)
> +- *reloc_addr += sym->st_value;
> ++ *reloc_addr = sym->st_value;
> + break;
> +
> + case R_ARM_TLS_TPOFF32:
> +--
> +1.7.9.5
> +
> diff --git a/meta/recipes-core/eglibc/eglibc_2.16.bb b/meta/recipes-core/eglibc/eglibc_2.16.bb
> index 78dc44a..68da385 100644
> --- a/meta/recipes-core/eglibc/eglibc_2.16.bb
> +++ b/meta/recipes-core/eglibc/eglibc_2.16.bb
> @@ -29,6 +29,7 @@ SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};protocol=h
> file://0001-eglibc-menuconfig-support.patch \
> file://0002-eglibc-menuconfig-hex-string-options.patch \
> file://0003-eglibc-menuconfig-build-instructions.patch \
> + file://0001-R_ARM_TLS_DTPOFF32.patch \
> "
> LIC_FILES_CHKSUM = "file://LICENSES;md5=98a1128c4b58120182cbea3b1752d8b9 \
> file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] fix for bug 2577
2012-09-24 11:04 [PATCH] fix for bug 2577 Andrei Dinu
2012-09-24 11:08 ` Andrei Dinu
@ 2012-09-24 11:15 ` Henning Heinold
1 sibling, 0 replies; 3+ messages in thread
From: Henning Heinold @ 2012-09-24 11:15 UTC (permalink / raw)
To: openembedded-core; +Cc: openembedded-core
On Mon, Sep 24, 2012 at 02:04:47PM +0300, Andrei Dinu wrote:
> Upstream status : pending
>
> Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> ---
> .../eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch | 25 ++++++++++++++++++++
> meta/recipes-core/eglibc/eglibc_2.16.bb | 1 +
> 2 files changed, 26 insertions(+)
> create mode 100644 meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
>
> diff --git a/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch b/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
> new file mode 100644
> index 0000000..f2480e5
> --- /dev/null
> +++ b/meta/recipes-core/eglibc/eglibc-2.16/0001-R_ARM_TLS_DTPOFF32.patch
> @@ -0,0 +1,25 @@
> +From 73890569c5048aef34d9a6f08907895a53211d72 Mon Sep 17 00:00:00 2001
> +From: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> +Date: Mon, 24 Sep 2012 10:21:49 +0300
> +Subject: [PATCH] updated version
> +
> +Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
> +---
> + .../libc/ports/sysdeps/arm/dl-machine.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +ndex 8d905e8..dcfa71e 100644
> +--- libc.orig/ports/sysdeps/arm/dl-machine.h
> ++++ libc/ports/sysdeps/arm/dl-machine.h
> +@@ -503,7 +503,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
> +
> + case R_ARM_TLS_DTPOFF32:
> + if (sym != NULL)
> +- *reloc_addr += sym->st_value;
> ++ *reloc_addr = sym->st_value;
> + break;
> +
> + case R_ARM_TLS_TPOFF32:
> +--
> +1.7.9.5
> +
> diff --git a/meta/recipes-core/eglibc/eglibc_2.16.bb b/meta/recipes-core/eglibc/eglibc_2.16.bb
> index 78dc44a..68da385 100644
> --- a/meta/recipes-core/eglibc/eglibc_2.16.bb
> +++ b/meta/recipes-core/eglibc/eglibc_2.16.bb
> @@ -29,6 +29,7 @@ SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};protocol=h
> file://0001-eglibc-menuconfig-support.patch \
> file://0002-eglibc-menuconfig-hex-string-options.patch \
> file://0003-eglibc-menuconfig-build-instructions.patch \
> + file://0001-R_ARM_TLS_DTPOFF32.patch \
> "
> LIC_FILES_CHKSUM = "file://LICENSES;md5=98a1128c4b58120182cbea3b1752d8b9 \
> file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \
> --
> 1.7.9.5
Please resend the patch, with a better/correct commit msg.
Bye Henning
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-09-24 11:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-24 11:04 [PATCH] fix for bug 2577 Andrei Dinu
2012-09-24 11:08 ` Andrei Dinu
2012-09-24 11:15 ` Henning Heinold
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.