Skip to content

Commit 7a0ad6c

Browse files
examples: install patched mke2fs from upstream (#136)
The fs-verity-enablement patches for mke2fs finally got merged. Use the upstream git repository from install-patched-tools. Disable fuse2fs support because it's currently broken when building on the GitHub runners. See tytso/e2fsprogs#229 . Signed-off-by: Allison Karlitskaya <[email protected]>
1 parent 74f65a7 commit 7a0ad6c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/common/install-patched-tools

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ git clone -b repart-verity https://github.com/allisonkarlitskaya/systemd
1414
cp _build/src/shared/*.so "${install_path}/src/shared"
1515
)
1616

17-
git clone -b verity https://github.com/allisonkarlitskaya/e2fsprogs
17+
git clone https://github.com/tytso/e2fsprogs
1818
(
1919
cd e2fsprogs
20-
./configure
20+
git checkout dd0c4efa173203484f0cd612f97eb19181240a33
21+
./configure --disable-fuse2fs
2122
make -j$(nproc)
2223
cp misc/mke2fs "${install_path}/mkfs.ext4"
2324
)

0 commit comments

Comments
 (0)