diff options
author | Armin Kuster <akuster808@gmail.com> | 2023-04-09 11:53:50 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-04-12 07:45:25 -0400 |
commit | 9d21e480531dee0cf13f85f272d7738ff54a93d6 (patch) | |
tree | 74a6aaf98b1ee5983619a91ca15bb2dc013c9cd0 | |
parent | 3d6ff465cec9111c39b9c4252614f5a65863ce46 (diff) | |
download | meta-security-9d21e480531dee0cf13f85f272d7738ff54a93d6.tar.gz |
parsec-service: fix SRC_URI hash
Fixes:
ERROR: Missing SRC_URI checksum, please add those to the recipe:
SRC_URI[parsec-service-1.2.0.sha256sum] = "f58e7ba859c22cc1904dc8298b1a7d94ee1ba3b4d4808f28e4cc0c96ddb149c9"
Needed to S dir too.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
v2]
Fix patch applying
-rw-r--r-- | meta-parsec/recipes-parsec/parsec-service/parsec-service_1.2.0.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.2.0.bb b/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.2.0.bb index 5f4ad5b..1d38dc5 100644 --- a/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.2.0.bb +++ b/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.2.0.bb | |||
@@ -12,7 +12,9 @@ SRC_URI += "crate://crates.io/parsec-service/${PV} \ | |||
12 | file://systemd.patch \ | 12 | file://systemd.patch \ |
13 | file://parsec-tmpfiles.conf \ | 13 | file://parsec-tmpfiles.conf \ |
14 | " | 14 | " |
15 | SRC_URI[parsec-service.sha256sum] = "f58e7ba859c22cc1904dc8298b1a7d94ee1ba3b4d4808f28e4cc0c96ddb149c9" | 15 | SRC_URI[parsec-service-1.2.0.sha256sum] = "f58e7ba859c22cc1904dc8298b1a7d94ee1ba3b4d4808f28e4cc0c96ddb149c9" |
16 | |||
17 | S = "${CARGO_VENDORING_DIRECTORY}/${BP}" | ||
16 | 18 | ||
17 | PACKAGECONFIG ??= "PKCS11 MBED-CRYPTO" | 19 | PACKAGECONFIG ??= "PKCS11 MBED-CRYPTO" |
18 | have_TPM = "${@bb.utils.contains('DISTRO_FEATURES', 'tpm2', 'TPM', '', d)}" | 20 | have_TPM = "${@bb.utils.contains('DISTRO_FEATURES', 'tpm2', 'TPM', '', d)}" |