summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-01-14 14:59:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-16 22:33:09 +0000
commite2848469adc841299c9067ba8183b3a7c0c20b57 (patch)
tree9f0b5576ff50d7009a5138fab3a2a2b149f8e1b1 /meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch
parent83b900fec5e07414b0f06fc1ecc11ed145cc19d5 (diff)
downloadpoky-e2848469adc841299c9067ba8183b3a7c0c20b57.tar.gz
elfutils: upgrade 0.177 -> 0.178
Remove 0007-Fix-control-path-where-we-have-str-as-uninitialized-.patch as issue fixed upstream. Rebase other patches. Adjust ptests, pass rate is now 100% again: ====================== All 206 tests passed (6 tests were not run) ====================== (From OE-Core rev: dce25738c82335f2a92b32bd52f0c63e2dbd336e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch')
-rw-r--r--meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch22
1 files changed, 10 insertions, 12 deletions
diff --git a/meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch b/meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch
index fda4f68059..dd8f88a454 100644
--- a/meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch
+++ b/meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch
@@ -1,33 +1,34 @@
1From 96e38289f2887ddb8e6d2fb91ea04bdbdf034ab5 Mon Sep 17 00:00:00 2001 1From 5bf6117a6eaf9007ce80adbb8b66a95ca98047a4 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com> 2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Wed, 21 Aug 2019 17:00:30 +0800 3Date: Wed, 21 Aug 2019 17:00:30 +0800
4Subject: [PATCH 2/2] mips_cfi 4Subject: [PATCH] mips_cfi
5 5
6Upstream-Status: Pending [from debian] 6Upstream-Status: Pending [from debian]
7 7
8Rebase to 0.177 8Rebase to 0.177
9 9
10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> 10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
11
11--- 12---
12 backends/Makefile.am | 2 +- 13 backends/Makefile.am | 2 +-
13 backends/mips_cfi.c | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 14 backends/mips_cfi.c | 80 ++++++++++++++++++++++++++++++++++++++++++++
14 backends/mips_init.c | 1 + 15 backends/mips_init.c | 1 +
15 3 files changed, 82 insertions(+), 1 deletion(-) 16 3 files changed, 82 insertions(+), 1 deletion(-)
16 create mode 100644 backends/mips_cfi.c 17 create mode 100644 backends/mips_cfi.c
17 18
18diff --git a/backends/Makefile.am b/backends/Makefile.am 19diff --git a/backends/Makefile.am b/backends/Makefile.am
19index aba8a4a..6ac0eec 100644 20index 07d45d7..dec3080 100644
20--- a/backends/Makefile.am 21--- a/backends/Makefile.am
21+++ b/backends/Makefile.am 22+++ b/backends/Makefile.am
22@@ -145,7 +145,7 @@ csky_SRCS = csky_attrs.c csky_init.c csky_symbol.c csky_cfi.c \ 23@@ -100,7 +100,7 @@ riscv_SRCS = riscv_init.c riscv_symbol.c riscv_cfi.c riscv_regs.c \
23 libebl_csky_pic_a_SOURCES = $(csky_SRCS) 24 csky_SRCS = csky_attrs.c csky_init.c csky_symbol.c csky_cfi.c \
24 am_libebl_csky_pic_a_OBJECTS = $(csky_SRCS:.c=.os) 25 csky_regs.c csky_initreg.c csky_corenote.c
25 26
26-mips_SRCS = mips_init.c mips_symbol.c mips_regs.c mips_retval.c 27-mips_SRCS = mips_init.c mips_symbol.c mips_regs.c mips_retval.c
27+mips_SRCS = mips_init.c mips_symbol.c mips_regs.c mips_retval.c mips_cfi.c 28+mips_SRCS = mips_init.c mips_symbol.c mips_regs.c mips_retval.c mips_cfi.c
28 libebl_mips_pic_a_SOURCES = $(mips_SRCS)
29 am_libebl_mips_pic_a_OBJECTS = $(mips_SRCS:.c=.os)
30 29
30 libebl_backends_a_SOURCES = $(i386_SRCS) $(sh_SRCS) $(x86_64_SRCS) \
31 $(ia64_SRCS) $(alpha_SRCS) $(arm_SRCS) \
31diff --git a/backends/mips_cfi.c b/backends/mips_cfi.c 32diff --git a/backends/mips_cfi.c b/backends/mips_cfi.c
32new file mode 100644 33new file mode 100644
33index 0000000..9ffdab5 34index 0000000..9ffdab5
@@ -126,6 +127,3 @@ index 8482e7f..bce5abe 100644
126 127
127 return MODVERSION; 128 return MODVERSION;
128 } 129 }
129--
1302.7.4
131