Remove patch maxsize.patch already applied upstream. Add patch Skip-empty-section-fixes-66.patch to prevent errors like:
ERROR: go-cross-1.6.2-r0 do_populate_sysroot_setscene: '('patchelf-uninative', '--set-interpreter', '/home/user/src/prj/build/tmp/sysroots-uninative/ x86_64-linux/lib/ld-linux-x86-64.so.2', '/home/user/src/prj/build/tmp/ work/x86_64-linux/go-cross/1.6.2-r0/sstate-install-populate_sysroot/x86_64- linux/usr/bin/aarch64-prj-linux/go')' failed with exit code 1 and the following output: cannot find section .rela.dyn Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br> --- .../patchelf/Skip-empty-section-fixes-66.patch | 30 ++++++++++++++++++++++ .../patchelf/patchelf/maxsize.patch | 30 ---------------------- .../patchelf/{patchelf_0.8.bb => patchelf_0.9.bb} | 8 +++--- 3 files changed, 35 insertions(+), 33 deletions(-) create mode 100644 meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch delete mode 100644 meta/recipes-devtools/patchelf/patchelf/maxsize.patch rename meta/recipes-devtools/patchelf/{patchelf_0.8.bb => patchelf_0.9.bb} (61%) 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 new file mode 100644 index 0000000..9ee8a55 --- /dev/null +++ b/meta/recipes-devtools/patchelf/patchelf/Skip-empty-section-fixes-66.patch @@ -0,0 +1,30 @@ +From 73526cb546ae6b00ea6169e40b01fb7b5f0dbb50 Mon Sep 17 00:00:00 2001 +From: Fabio Berton <fabio.ber...@ossystems.com.br> +Date: Thu, 28 Jul 2016 11:05:06 -0300 +Subject: [PATCH] Skip empty section (fixes #66) +Organization: O.S. Systems Software LTDA. + +Upstream-Status: Pending + +Signed-off-by: Fabio Berton <fabio.ber...@ossystems.com.br> +--- + src/patchelf.cc | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/patchelf.cc b/src/patchelf.cc +index 136098f..2677a26 100644 +--- a/src/patchelf.cc ++++ b/src/patchelf.cc +@@ -684,6 +684,9 @@ void ElfFile<ElfFileParamNames>::rewriteSectionsExecutable() + for (unsigned int i = 1; i <= lastReplaced; ++i) { + Elf_Shdr & shdr(shdrs[i]); + string sectionName = getSectionName(shdr); ++ if (sectionName == "") { ++ continue; ++ } + debug("looking at section `%s'\n", sectionName.c_str()); + /* !!! Why do we stop after a .dynstr section? I can't + remember! */ +-- +2.1.4 + diff --git a/meta/recipes-devtools/patchelf/patchelf/maxsize.patch b/meta/recipes-devtools/patchelf/patchelf/maxsize.patch deleted file mode 100644 index cc04a89..0000000 --- a/meta/recipes-devtools/patchelf/patchelf/maxsize.patch +++ /dev/null @@ -1,30 +0,0 @@ -From f6886c2c33a1cf8771163919f3d20f6340c0ce38 Mon Sep 17 00:00:00 2001 -From: Eelco Dolstra <eelco.dols...@logicblox.com> -Date: Fri, 10 Jul 2015 18:12:37 +0200 -Subject: [PATCH] Quick fix for #47 - -https://github.com/NixOS/patchelf/issues/47 - -Avoid issues with holes in binaries such as qemu-pcc from qemu-native. - -Upstream-Status: Submitted -RP -2016/2/3 - ---- - src/patchelf.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/patchelf.cc b/src/patchelf.cc -index 8566ed9..df75593 100644 ---- a/src/patchelf.cc -+++ b/src/patchelf.cc -@@ -248,7 +248,7 @@ static void readFile(string fileName, mode_t * fileMode) - if (stat(fileName.c_str(), &st) != 0) error("stat"); - fileSize = st.st_size; - *fileMode = st.st_mode; -- maxSize = fileSize + 8 * 1024 * 1024; -+ maxSize = fileSize + 64 * 1024 * 1024; - - contents = (unsigned char *) malloc(fileSize + maxSize); - if (!contents) abort(); \ No newline at end of file diff --git a/meta/recipes-devtools/patchelf/patchelf_0.8.bb b/meta/recipes-devtools/patchelf/patchelf_0.9.bb similarity index 61% rename from meta/recipes-devtools/patchelf/patchelf_0.8.bb rename to meta/recipes-devtools/patchelf/patchelf_0.9.bb index 8484a7e..86afd48 100644 --- a/meta/recipes-devtools/patchelf/patchelf_0.8.bb +++ b/meta/recipes-devtools/patchelf/patchelf_0.9.bb @@ -1,10 +1,12 @@ SRC_URI = "http://nixos.org/releases/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.bz2 \ - file://maxsize.patch" + file://Skip-empty-section-fixes-66.patch \ +" + LICENSE = "GPLv3" SUMMARY = "Tool to allow editing of RPATH and interpreter fields in ELF binaries" -SRC_URI[md5sum] = "5b151e3c83b31f5931b4a9fc01635bfd" -SRC_URI[sha256sum] = "c99f84d124347340c36707089ec8f70530abd56e7827c54d506eb4cc097a17e7" +SRC_URI[md5sum] = "d02687629c7e1698a486a93a0d607947" +SRC_URI[sha256sum] = "a0f65c1ba148890e9f2f7823f4bedf7ecad5417772f64f994004f59a39014f83" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" -- 2.1.4 -- _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core