summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libsolv/libsolv
diff options
context:
space:
mode:
authorMing Liu <liu.ming50@gmail.com>2017-10-02 07:25:42 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-08 22:24:04 +0000
commit0c79f8d2381d424af8cf279840b7c04a95dec638 (patch)
tree8a3127eda725229a2eb41f458bb0915571a752df /meta/recipes-extended/libsolv/libsolv
parentaa58a5e9b8c0dc1b8688c7543011254880abd362 (diff)
downloadpoky-0c79f8d2381d424af8cf279840b7c04a95dec638.tar.gz
libsolv: fix a kernel-devsrc installation issue
We encountered a problem when installing kernel-devsrc package on a intel-x86 target, as follows: $ dnf install kernel-devsrc | Installing : kernel-devsrc-1.0-r0.0.intel_corei7_64 1/1 | failed loading RPMDB | The downloaded packages were saved in cache until the next successful transaction. | You can remove cached packages by executing 'dnf clean packages'. It can be fixed by increasing MAX_HDR_CNT and MAX_HDR_DSIZE in libsolv per test. (From OE-Core rev: 24fdebbbfdeadcf3d152a0adf3058c714b193a8f) Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libsolv/libsolv')
-rw-r--r--meta/recipes-extended/libsolv/libsolv/0001-repo_rpmdb.c-increase-MAX_HDR_CNT-and-MAX_HDR_DSIZE.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-extended/libsolv/libsolv/0001-repo_rpmdb.c-increase-MAX_HDR_CNT-and-MAX_HDR_DSIZE.patch b/meta/recipes-extended/libsolv/libsolv/0001-repo_rpmdb.c-increase-MAX_HDR_CNT-and-MAX_HDR_DSIZE.patch
new file mode 100644
index 0000000000..4a4e5cba25
--- /dev/null
+++ b/meta/recipes-extended/libsolv/libsolv/0001-repo_rpmdb.c-increase-MAX_HDR_CNT-and-MAX_HDR_DSIZE.patch
@@ -0,0 +1,35 @@
1From 1c4c935cb73ac1ccb9693df1a51ba218a22e8ca8 Mon Sep 17 00:00:00 2001
2From: Ming Liu <liu.ming50@gmail.com>
3Date: Sat, 30 Sep 2017 11:15:16 +0800
4Subject: [PATCH] repo_rpmdb.c: increase MAX_HDR_CNT and MAX_HDR_DSIZE
5
6Upstream-Status: Submitted [https://github.com/openSUSE/libsolv/pull/230]
7
8We encountered 'corrupt rpm' issues when installing extreme big RPM
9packages like the kernel-devsrc package of Yocto project.
10
11It can be fixed by increasing MAX_HDR_CNT and MAX_HDR_DSIZE per test.
12
13Signed-off-by: Ming Liu <liu.ming50@gmail.com>
14---
15 ext/repo_rpmdb.c | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18diff --git a/ext/repo_rpmdb.c b/ext/repo_rpmdb.c
19index c7000a9..7000835 100644
20--- a/ext/repo_rpmdb.c
21+++ b/ext/repo_rpmdb.c
22@@ -170,8 +170,8 @@
23 #define MAX_SIG_CNT 0x100000
24 #define MAX_SIG_DSIZE 0x100000
25
26-#define MAX_HDR_CNT 0x100000
27-#define MAX_HDR_DSIZE 0x2000000
28+#define MAX_HDR_CNT 0x200000
29+#define MAX_HDR_DSIZE 0x4000000
30
31 typedef struct rpmhead {
32 int cnt;
33--
342.7.4
35