tpm2-pytss: Add python3-asn1crypto runtime dependency

The tpm2-pytss module is importing the module asn1crypto in tsskey.py,
however, the current bitbake recipe is not including this python package
as runtime dependency. This causes the module invocation to fail at the
moment.

The commit adds this dependency to the bitbake recipe, to make the
recipe self contained.

Signed-off-by: Omri Sarig <omri.sarig13@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Omri Sarig
2025-03-11 11:33:32 +01:00
committed by Armin Kuster
parent 11c031554b
commit 75a6ea387b

View File

@@ -18,4 +18,4 @@ DEPENDS = " \
tpm2-tss \
"
RDEPENDS:${PN} = "libtss2"
RDEPENDS:${PN} = "libtss2 python3-asn1crypto"