]> code.ossystems Code Review - openembedded-core.git/commit
rpm: make --nosignature work
authorRobert Yang <liezhi.yang@windriver.com>
Mon, 18 Jul 2016 03:32:41 +0000 (20:32 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 25 Jul 2016 22:46:58 +0000 (23:46 +0100)
commit038c09d6ab9581030efdc16aa1b96972970eeaab
tree78bc1a90ce9cdfd8629d11d9d2225496a9bde94c
parenteb7f08c4c01313afc8350200eeb63daefde8a6f6
rpm: make --nosignature work

OE-core uses rpm's --nosignature, but it never worked:
self._invoke_smart('config --set rpm-check-signatures=false')

Now fix it with:
* Define SUPPORT_NOSIGNATURES to 1 in system.h
* !QVA_ISSET(qva->qva_flags, SIGNATURE) -> QVA_ISSET(qva->qva_flags, SIGNATURE),
  otherwise, when use --nosignature would read database and verify
  signature, this is not expected.

This can fix some race issues, for example, when more than one process
are querying rpm file with "rpm -qp --nosignature", they may hang up
because of race issues (the processes are trying to get RW/RD lock on
the database, but they shouldn't read the database at all since -qp and
--nosignature are used).

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/rpm/rpm/0001-system.h-query.c-support-nosignature.patch [new file with mode: 0644]
meta/recipes-devtools/rpm/rpm_5.4.16.bb