diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2022-02-16 08:04:48 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-02-16 08:26:02 -0800 |
| commit | e67a4dcf96a9c6fc21361a369198d75ee56df8df (patch) | |
| tree | 22f582b5cc5dfa8721226b74595b553760d6a108 /meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb | |
| parent | 32351c5db77cbae332efb39dcac1afa34bc3461b (diff) | |
| download | meta-openembedded-e67a4dcf96a9c6fc21361a369198d75ee56df8df.tar.gz | |
fsverity-utils: upgrade 1.4 -> 1.5
Changelog:
=========
* Made the 'fsverity sign' command and the 'libfsverity_sign_digest()' function
support PKCS#11 tokens.
* Avoided a compiler error when building with musl libc.
* Avoided compiler warnings when building with OpenSSL 3.0.
* Improved documentation and test scripts.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb')
| -rw-r--r-- | meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb b/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb new file mode 100644 index 0000000000..89e92d62f4 --- /dev/null +++ b/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.5.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "Userspace utilities for fs-verity" | ||
| 2 | DESCRIPTION = "fs-verity is a Linux kernel feature that does transparent \ | ||
| 3 | on-demand integrity/authenticity verification of the contents of read-only \ | ||
| 4 | files, using a hidden Merkle tree (hash tree) associated with the file. The \ | ||
| 5 | mechanism is similar to dm-verity, but implemented at the file level rather \ | ||
| 6 | than at the block device level." | ||
| 7 | HOMEPAGE = "https://www.kernel.org/doc/html/latest/filesystems/fsverity.html" | ||
| 8 | SECTION = "console" | ||
| 9 | LICENSE = "MIT" | ||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=bc974d217b525ea216a336adb73e1220" | ||
| 11 | |||
| 12 | SRCREV = "20e87c13075a8e5660a8d69fd6c93d4f7c5f01a5" | ||
| 13 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/fsverity-utils.git;branch=master" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/git" | ||
| 16 | |||
| 17 | DEPENDS = "openssl" | ||
| 18 | |||
| 19 | EXTRA_OEMAKE:append = "PREFIX=${prefix} USE_SHARED_LIB=1" | ||
| 20 | # We want to statically link the binary to libfsverity on native Windows | ||
| 21 | EXTRA_OEMAKE:remove:mingw32:class-nativesdk = "USE_SHARED_LIB=1" | ||
| 22 | EXTRA_OEMAKE:remove:mingw32:class-native = "USE_SHARED_LIB=1" | ||
| 23 | |||
| 24 | do_install() { | ||
| 25 | oe_runmake install DESTDIR=${D} | ||
| 26 | } | ||
| 27 | |||
| 28 | PACKAGES =+ "libfsverity" | ||
| 29 | FILES:libfsverity = "${libdir}/libfsverity*${SOLIBS}" | ||
| 30 | |||
| 31 | BBCLASSEXTEND = "native nativesdk" | ||
