diff options
author | John Edward Broadbent <jebr@google.com> | 2022-07-22 09:35:10 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-07-30 14:11:27 -0700 |
commit | 71199365ff5159f7b2084741b785604bfb403d11 (patch) | |
tree | 05aa64c11354064400df5661a00b040cb3b75bd3 | |
parent | ac0a4ea0f84e8f3e90d26399dbb9456327c85147 (diff) | |
download | meta-security-71199365ff5159f7b2084741b785604bfb403d11.tar.gz |
meta-security: Add recipe for libhoth
Libhoth is usb protocol implementation which is required for hoth class
devices
Signed-off-by: John Edward Broadbent <jebr@google.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-tpm/recipes-tpm/hoth/libhoth_git.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-tpm/recipes-tpm/hoth/libhoth_git.bb b/meta-tpm/recipes-tpm/hoth/libhoth_git.bb new file mode 100644 index 0000000..a3ebce7 --- /dev/null +++ b/meta-tpm/recipes-tpm/hoth/libhoth_git.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "Google Hoth USB library" | ||
2 | DESCRIPTION = "Libraries and example programs for interacting with a \ | ||
3 | hoth-class root of trust." | ||
4 | HOMEPAGE = "https://github.com/google/libhoth" | ||
5 | |||
6 | LICENSE = "Apache-2.0" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
8 | |||
9 | SRC_URI = "git://github.com/google/libhoth;protocol=https;branch=main" | ||
10 | SRCREV = "1622e8a040d21dd564fdc1cb4df5eda01688c197" | ||
11 | |||
12 | DEPENDS += "libusb1" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit pkgconfig meson | ||
17 | |||