diff options
author | Luca Boccassi <luca.boccassi@microsoft.com> | 2020-10-21 17:55:52 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-10-21 14:11:09 -0700 |
commit | 993c8cfbc9da4db07a38ae12a9ee6ee0ecae9d4e (patch) | |
tree | a3ac69dfbd9e3d5309168590ed5128ed711b9824 | |
parent | 7839164921ddb340a1bff322a1274c6022cb8565 (diff) | |
download | meta-openembedded-993c8cfbc9da4db07a38ae12a9ee6ee0ecae9d4e.tar.gz |
Add recipe for fsverity-utils
Library and command-line tool to manage the fs-verity
feature, introduced in Linux 5.4 and supported in ext4
and f2fs filesystems.
https://www.kernel.org/doc/html/latest/filesystems/fsverity.html
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 1 | ||||
-rw-r--r-- | meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.2.bb | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index 92190c8389..a63c940230 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | |||
@@ -186,6 +186,7 @@ RDEPENDS_packagegroup-meta-oe-core_remove_riscv32 = "safec" | |||
186 | RDEPENDS_packagegroup-meta-oe-crypto ="\ | 186 | RDEPENDS_packagegroup-meta-oe-crypto ="\ |
187 | botan \ | 187 | botan \ |
188 | cryptsetup \ | 188 | cryptsetup \ |
189 | fsverity-utils \ | ||
189 | libkcapi \ | 190 | libkcapi \ |
190 | libmcrypt \ | 191 | libmcrypt \ |
191 | libsodium \ | 192 | libsodium \ |
diff --git a/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.2.bb b/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.2.bb new file mode 100644 index 0000000000..4d5dbafb34 --- /dev/null +++ b/meta-oe/recipes-crypto/fsverity-utils/fsverity-utils_1.2.bb | |||
@@ -0,0 +1,28 @@ | |||
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 = "406187bb3a885e083b448b2c2aa42c22957ae629" | ||
13 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/fsverity-utils.git" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | DEPENDS = "openssl" | ||
18 | |||
19 | EXTRA_OEMAKE += "PREFIX=${prefix} USE_SHARED_LIB=1" | ||
20 | |||
21 | do_install() { | ||
22 | oe_runmake install DESTDIR=${D} | ||
23 | } | ||
24 | |||
25 | PACKAGES =+ "libfsverity" | ||
26 | FILES_libfsverity = "${libdir}/libfsverity*${SOLIBS}" | ||
27 | |||
28 | BBCLASSEXTEND = "native nativesdk" | ||