-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I made a fsck.erofs tool to check erofs filesystem image integrity and calculate filesystem compression ratio. Here are options to support now. fsck.erofs [options] IMAGE -V print the version number of fsck.erofs and exit. -d# set output message level to # (maximum 9) -p print total compression ratio of all files -c check if all compressed files are well decompressed Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Daeho Jeong <[email protected]> Signed-off-by: Gao Xiang <[email protected]>
- Loading branch information
Showing
9 changed files
with
657 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,4 @@ stamp-h1 | |
/mkfs/mkfs.erofs | ||
/fuse/erofsfuse | ||
/dump/dump.erofs | ||
/fsck/fsck.erofs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# SPDX-License-Identifier: GPL-2.0+ | ||
# Makefile.am | ||
|
||
AUTOMAKE_OPTIONS = foreign | ||
bin_PROGRAMS = fsck.erofs | ||
AM_CPPFLAGS = ${libuuid_CFLAGS} | ||
fsck_erofs_SOURCES = main.c | ||
fsck_erofs_CFLAGS = -Wall -Werror -I$(top_srcdir)/include | ||
fsck_erofs_LDADD = $(top_builddir)/lib/liberofs.la ${libselinux_LIBS} ${libuuid_LIBS} ${liblz4_LIBS} |
Oops, something went wrong.