Re: [OE-core] [PATCH 1/3] package_rpm: support signing of rpm packages

2015-08-27 Thread Mark Hatle
On 8/26/15 10:11 PM, Markus Lehtonen wrote: Without pasting the whole patch: --- createrepo-0.4.11.orig/dumpMetadata.py +++ createrepo-0.4.11/dumpMetadata.py @@ -92,7 +92,7 @@ def returnHdr(ts, package): -ts.setVSFlags((rpm.RPMVSF_NOMD5|rpm.RPMVSF_NEEDPAYLOAD)) +

[OE-core] [PATCH 1/3] package_rpm: support signing of rpm packages

2015-08-26 Thread Markus Lehtonen
This patch adds a new bbclass for generating rpm packages that are signed with a user defined key. The packages are signed as part of the package_write_rpm task. In order to enable the feature you need to 1. 'INHERIT += sign_rpm' in bitbake config (e.g. local or distro) 2. Create a file that

Re: [OE-core] [PATCH 1/3] package_rpm: support signing of rpm packages

2015-08-26 Thread Mark Hatle
On 8/26/15 6:18 AM, Markus Lehtonen wrote: This patch adds a new bbclass for generating rpm packages that are signed with a user defined key. The packages are signed as part of the package_write_rpm task. In order to enable the feature you need to 1. 'INHERIT += sign_rpm' in bitbake config

Re: [OE-core] [PATCH 1/3] package_rpm: support signing of rpm packages

2015-08-26 Thread Markus Lehtonen
Hi, On 26/08/15 18:04, Mark Hatle mark.ha...@windriver.com wrote: On 8/26/15 6:18 AM, Markus Lehtonen wrote: This patch adds a new bbclass for generating rpm packages that are signed with a user defined key. The packages are signed as part of the package_write_rpm task. In order to enable