summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-06-04 11:14:50 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-06-06 23:16:51 +0100
commitc7b15f642b7a219dde771eee3a07bbe9b6e276d0 (patch)
tree722338ef4030b5d881144ee1dfc7baa285a079e5 /meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch
parentb76b3e37436344d2dfbab10886af2ecbcb813237 (diff)
downloadpoky-c7b15f642b7a219dde771eee3a07bbe9b6e276d0.tar.gz
elfutils: update 0.183 -> 0.185
0001-add-support-for-ipkg-to-debuginfod.cxx.patch merged upstream. 0001-debuginfod-debuginfod-client.c-correct-string-format.patch rebased. (From OE-Core rev: 466ba2d5c81f817334b2f9242daa8ffca271e224) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch')
-rw-r--r--meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch b/meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch
deleted file mode 100644
index 5f82afef0c..0000000000
--- a/meta/recipes-devtools/elfutils/files/0001-add-support-for-ipkg-to-debuginfod.cxx.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 571416bf5b5ef319df6d9c79e46680920487e4a7 Mon Sep 17 00:00:00 2001
2From: dorindabassey <dorindabassey@gmail.com>
3Date: Sat, 19 Dec 2020 01:11:46 +0100
4Subject: [PATCH] add support for ipkg to debuginfod.cxx
5
6added support for ipkg to the debuginfod scanner. 0.182 only supports RPM and scan .debs, with this patch, debuginfod scanner would be able to scan .ipk
7
8Upstream-status: Submitted [https://sourceware.org/pipermail/elfutils-devel/2020q4/003357.html]
9
10Signed-off-by: dorindabassey <dorindabassey@gmail.com>
11
12---
13 debuginfod/debuginfod.cxx | 2 ++
14 1 file changed, 2 insertions(+)
15
16diff --git a/debuginfod/debuginfod.cxx b/debuginfod/debuginfod.cxx
17index b34eacc..a8915f2 100644
18--- a/debuginfod/debuginfod.cxx
19+++ b/debuginfod/debuginfod.cxx
20@@ -484,11 +484,13 @@ parse_opt (int key, char *arg,
21 {
22 scan_archives[".deb"]="dpkg-deb --fsys-tarfile";
23 scan_archives[".ddeb"]="dpkg-deb --fsys-tarfile";
24+ scan_archives[".ipk"]="dpkg-deb --fsys-tarfile";
25 }
26 else
27 {
28 scan_archives[".deb"]="(bsdtar -O -x -f - data.tar.xz)<";
29 scan_archives[".ddeb"]="(bsdtar -O -x -f - data.tar.xz)<";
30+ scan_archives[".ipk"]="(bsdtar -O -x -f - data.tar.xz)<";
31 }
32 // .udeb too?
33 break;