diff options
| -rw-r--r-- | meta/recipes-devtools/patchelf/patchelf/maxsize.patch | 30 | ||||
| -rw-r--r-- | meta/recipes-devtools/patchelf/patchelf_0.8.bb | 3 |
2 files changed, 32 insertions, 1 deletions
diff --git a/meta/recipes-devtools/patchelf/patchelf/maxsize.patch b/meta/recipes-devtools/patchelf/patchelf/maxsize.patch new file mode 100644 index 0000000000..cc04a89e69 --- /dev/null +++ b/meta/recipes-devtools/patchelf/patchelf/maxsize.patch | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | From f6886c2c33a1cf8771163919f3d20f6340c0ce38 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Eelco Dolstra <eelco.dolstra@logicblox.com> | ||
| 3 | Date: Fri, 10 Jul 2015 18:12:37 +0200 | ||
| 4 | Subject: [PATCH] Quick fix for #47 | ||
| 5 | |||
| 6 | https://github.com/NixOS/patchelf/issues/47 | ||
| 7 | |||
| 8 | Avoid issues with holes in binaries such as qemu-pcc from qemu-native. | ||
| 9 | |||
| 10 | Upstream-Status: Submitted | ||
| 11 | RP | ||
| 12 | 2016/2/3 | ||
| 13 | |||
| 14 | --- | ||
| 15 | src/patchelf.cc | 2 +- | ||
| 16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/src/patchelf.cc b/src/patchelf.cc | ||
| 19 | index 8566ed9..df75593 100644 | ||
| 20 | --- a/src/patchelf.cc | ||
| 21 | +++ b/src/patchelf.cc | ||
| 22 | @@ -248,7 +248,7 @@ static void readFile(string fileName, mode_t * fileMode) | ||
| 23 | if (stat(fileName.c_str(), &st) != 0) error("stat"); | ||
| 24 | fileSize = st.st_size; | ||
| 25 | *fileMode = st.st_mode; | ||
| 26 | - maxSize = fileSize + 8 * 1024 * 1024; | ||
| 27 | + maxSize = fileSize + 64 * 1024 * 1024; | ||
| 28 | |||
| 29 | contents = (unsigned char *) malloc(fileSize + maxSize); | ||
| 30 | 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.8.bb index c1b87f5539..8484a7e589 100644 --- a/meta/recipes-devtools/patchelf/patchelf_0.8.bb +++ b/meta/recipes-devtools/patchelf/patchelf_0.8.bb | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | SRC_URI = "http://nixos.org/releases/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.bz2" | 1 | SRC_URI = "http://nixos.org/releases/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.bz2 \ |
| 2 | file://maxsize.patch" | ||
| 2 | LICENSE = "GPLv3" | 3 | LICENSE = "GPLv3" |
| 3 | SUMMARY = "Tool to allow editing of RPATH and interpreter fields in ELF binaries" | 4 | SUMMARY = "Tool to allow editing of RPATH and interpreter fields in ELF binaries" |
| 4 | 5 | ||
