Revert "user-key-store.bbclass: Kill gpg agent daemon after gpg sign"

This reverts commit fc8969af8a.

In parallel build this will led sign error because the gpg-agent
in using maybe killed in another task.

Signed-off-by: Liwei Song <liwei.song@windriver.com>
This commit is contained in:
Liwei Song
2020-05-26 04:38:38 +00:00
committed by Jia Zhang
parent f6963bf84b
commit 9880c3ab33

View File

@@ -540,10 +540,6 @@ def boot_sign(input, d):
status, output = oe.utils.getstatusoutput(cmd)
if status:
bb.fatal('Failed to sign: %s' % (input))
gpg_conf = bb.utils.which(os.getenv('PATH'), 'gpgconf')
cmd = 'GNUPGHOME=%s %s --kill gpg-agent' % \
(gpg_path, gpg_conf)
status, output = oe.utils.getstatusoutput(cmd)
def uks_boot_sign(input, d):
boot_sign(input, d)