[OE-core] [PATCH v5] lib/oe/package_manager.py (rpm): Allow use of non-signed packages

Alexander Kanavin alexander.kanavin at linux.intel.com
Mon Oct 2 17:16:10 UTC 2017


On 10/02/2017 07:56 PM, Otavio Salvador wrote:

> @@ -548,11 +548,13 @@ class RpmPM(PackageManager):
>           if feed_uris == "":
>               return
>   
> +        gpg_opts = ''
>           if self.d.getVar('PACKAGE_FEED_SIGN') == '1':
> -            gpg_opts = 'repo_gpgcheck=1\n'
> +            gpg_opts += 'repo_gpgcheck=1\n'
>               gpg_opts += 'gpgkey=file://%s/pki/packagefeed-gpg/PACKAGEFEED-GPG-KEY-%s-%s\n' % (self.d.getVar('sysconfdir'), self.d.getVar('DISTRO'), self.d.getVar('DISTRO_CODENAME'))
> -        else:
> -            gpg_opts = ''
> +
> +        if self.d.getVar('RPM_SIGN_PACKAGES') == '0':
> +            gpg_opts += 'gpgcheck=0\n'
>   
>           bb.utils.mkdirhier(oe.path.join(self.target_rootfs, "etc", "yum.repos.d"))
>           remote_uris = self.construct_uris(feed_uris.split(), feed_base_paths.split())
> 

This one looks good, thanks for persevering :)

Alex



More information about the Openembedded-core mailing list