summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-03-07 00:20:09 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-07 20:05:31 +0000
commit4485ea5807dd99b7f140b06b35654a6a70c286e4 (patch)
tree40e240190a18121f3ace7a528e9d836fc3762eb3 /meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch
parentee18a2b23391a5308abd9bd817d2e2471ce00270 (diff)
downloadpoky-4485ea5807dd99b7f140b06b35654a6a70c286e4.tar.gz
binutils: Upgrade to 2.28 release
(From OE-Core rev: e9f839d5fe70a222cc7b8942f401ac86a10e6604) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch')
-rw-r--r--meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch b/meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch
deleted file mode 100644
index d82a0b694c..0000000000
--- a/meta/recipes-devtools/binutils/binutils/0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From 8941017bc0226b60ce306d5271df15820ce66a53 Mon Sep 17 00:00:00 2001
2From: Alan Modra <amodra@gmail.com>
3Date: Tue, 30 Aug 2016 20:57:32 +0930
4Subject: [PATCH] ppc apuinfo for spe parsed incorrectly
5Organization: O.S. Systems Software LTDA.
6
7apuinfo saying SPE resulted in mach = bfd_mach_ppc_vle due to a
8missing break.
9
10 PR 20531
11 * elf32-ppc.c (_bfd_elf_ppc_set_arch): Add missing "break".
12
13
14Backport from :
15https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commitdiff;h=8941017b
16
17Upstream-Status: Backport
18Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
19---
20 bfd/elf32-ppc.c | 1 +
21 1 file changed, 1 insertion(+)
22
23diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c
24index 95ce1dc..e42ef1c 100644
25--- a/bfd/elf32-ppc.c
26+++ b/bfd/elf32-ppc.c
27@@ -2246,6 +2246,7 @@ _bfd_elf_ppc_set_arch (bfd *abfd)
28 case PPC_APUINFO_BRLOCK:
29 if (mach != bfd_mach_ppc_vle)
30 mach = bfd_mach_ppc_e500;
31+ break;
32
33 case PPC_APUINFO_VLE:
34 mach = bfd_mach_ppc_vle;
35--
362.1.4
37