Re: [OE-core] [PATCH] package_manager.py: Skip gpgcheck while using dnf on target

2018-04-05 Thread Alexander Kanavin
On 04/04/2018 09:27 PM, Manjukumar Harthikote Matha wrote: diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index e006dc6..9f22fb0 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py @@ -674,7 +674,7 @@ class RpmPM(PackageManager):

Re: [OE-core] [PATCH] package_manager.py: Skip gpgcheck while using dnf on target

2018-04-04 Thread Manjukumar Harthikote Matha
Subject: [OE-core][PATCH] package_manager.py: Skip gpgcheck while using dnf on > target > > By default, RPM_SIGN_PACKAGES is not defined. Add gpgcheck=0 to oe-remote- > repo.repo file, otherwise dnf will complain during install operation on target > > Note, RPM_SIGN_PACKAGES is set only when you i

[OE-core] [PATCH] package_manager.py: Skip gpgcheck while using dnf on target

2018-04-03 Thread Manjukumar Matha
By default, RPM_SIGN_PACKAGES is not defined. Add gpgcheck=0 to oe-remote-repo.repo file, otherwise dnf will complain during install operation on target Note, RPM_SIGN_PACKAGES is set only when you inherit sign_rpm explicitly Signed-off-by: Manjukumar Matha