diff options
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch')
-rw-r--r-- | meta/recipes-devtools/elfutils/files/debian/mips_cfi.patch | 22 |
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 @@ | |||
1 | From 96e38289f2887ddb8e6d2fb91ea04bdbdf034ab5 Mon Sep 17 00:00:00 2001 | 1 | From 5bf6117a6eaf9007ce80adbb8b66a95ca98047a4 Mon Sep 17 00:00:00 2001 |
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
3 | Date: Wed, 21 Aug 2019 17:00:30 +0800 | 3 | Date: Wed, 21 Aug 2019 17:00:30 +0800 |
4 | Subject: [PATCH 2/2] mips_cfi | 4 | Subject: [PATCH] mips_cfi |
5 | 5 | ||
6 | Upstream-Status: Pending [from debian] | 6 | Upstream-Status: Pending [from debian] |
7 | 7 | ||
8 | Rebase to 0.177 | 8 | Rebase to 0.177 |
9 | 9 | ||
10 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | 10 | Signed-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 | ||
18 | diff --git a/backends/Makefile.am b/backends/Makefile.am | 19 | diff --git a/backends/Makefile.am b/backends/Makefile.am |
19 | index aba8a4a..6ac0eec 100644 | 20 | index 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) \ | ||
31 | diff --git a/backends/mips_cfi.c b/backends/mips_cfi.c | 32 | diff --git a/backends/mips_cfi.c b/backends/mips_cfi.c |
32 | new file mode 100644 | 33 | new file mode 100644 |
33 | index 0000000..9ffdab5 | 34 | index 0000000..9ffdab5 |
@@ -126,6 +127,3 @@ index 8482e7f..bce5abe 100644 | |||
126 | 127 | ||
127 | return MODVERSION; | 128 | return MODVERSION; |
128 | } | 129 | } |
129 | -- | ||
130 | 2.7.4 | ||
131 | |||