summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2019-05-05 06:22:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-08 12:15:17 +0100
commit27c497562938d141844e0676227c47241d2af136 (patch)
tree62665e423af5cd1a7f816cc859bb60614c5f49f7 /meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch
parent6c1ddb540944f43784af929d02eb56d7efc350fb (diff)
downloadpoky-27c497562938d141844e0676227c47241d2af136.tar.gz
patchelf: Upgrade 0.9 -> 0.10
Drop patches merged (or redone differently) upstream (From OE-Core rev: e81004fd334a8204852f271101ddcf4a39e9ccb5) Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch')
-rw-r--r--meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch b/meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch
deleted file mode 100644
index 9ee8a554a7..0000000000
--- a/meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 73526cb546ae6b00ea6169e40b01fb7b5f0dbb50 Mon Sep 17 00:00:00 2001
2From: Fabio Berton <fabio.berton@ossystems.com.br>
3Date: Thu, 28 Jul 2016 11:05:06 -0300
4Subject: [PATCH] Skip empty section (fixes #66)
5Organization: O.S. Systems Software LTDA.
6
7Upstream-Status: Pending
8
9Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
10---
11 src/patchelf.cc | 3 +++
12 1 file changed, 3 insertions(+)
13
14diff --git a/src/patchelf.cc b/src/patchelf.cc
15index 136098f..2677a26 100644
16--- a/src/patchelf.cc
17+++ b/src/patchelf.cc
18@@ -684,6 +684,9 @@ void ElfFile<ElfFileParamNames>::rewriteSectionsExecutable()
19 for (unsigned int i = 1; i <= lastReplaced; ++i) {
20 Elf_Shdr & shdr(shdrs[i]);
21 string sectionName = getSectionName(shdr);
22+ if (sectionName == "") {
23+ continue;
24+ }
25 debug("looking at section `%s'\n", sectionName.c_str());
26 /* !!! Why do we stop after a .dynstr section? I can't
27 remember! */
28--
292.1.4
30