Skip to content
This repository was archived by the owner on Jan 3, 2026. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/erofs-utils
Submodule erofs-utils updated 89 files
+115 −95 .github/workflows/build-erofs-utils.yml
+6 −0 .gitignore
+13 −0 .mailmap
+1 −1 Makefile.am
+135 −118 build.sh
+9 −0 build/cmake/erofs-tools/extract.cmake
+6 −1 build/cmake/lib/liberofs.cmake
+2 −0 build/cmake/lib/libfuse/libfuse.cmake
+8 −1 build/cmake/lib/libselinux.cmake
+21 −0 build/cmake/lib/patch/libselinux_label_support.c.patch
+55 −53 build_cygwin.sh
+61 −59 build_darwin.sh
+215 −4 configure.ac
+1 −1 dump/Makefile.am
+77 −26 dump/main.c
+14 −9 extract/ExtractHelper.cpp
+1 −1 extract/ExtractOperation.cpp
+47 −6 extract/main.cpp
+2 −2 fsck/Makefile.am
+29 −20 fsck/main.c
+1 −1 fuse/Makefile.am
+25 −6 fuse/main.c
+8 −1 fuse/main_win.c
+2 −1 include/erofs/blobchunk.h
+0 −48 include/erofs/compress.h
+5 −3 include/erofs/compress_hints.h
+1 −32 include/erofs/config.h
+14 −2 include/erofs/defs.h
+10 −0 include/erofs/err.h
+8 −1 include/erofs/fragments.h
+0 −392 include/erofs/hashtable.h
+69 −0 include/erofs/importer.h
+9 −7 include/erofs/inode.h
+48 −29 include/erofs/internal.h
+26 −3 include/erofs/io.h
+5 −0 include/erofs/list.h
+6 −0 include/erofs/lock.h
+9 −2 include/erofs/tar.h
+7 −4 include/erofs/xattr.h
+10 −3 include/erofs_fs.h
+25 −7 lib/Makefile.am
+599 −0 lib/backends/nbd.c
+67 −0 lib/base64.c
+25 −6 lib/blobchunk.c
+11 −4 lib/cache.c
+159 −125 lib/compress.c
+21 −18 lib/compress_hints.c
+4 −2 lib/compressor.c
+4 −2 lib/compressor.h
+2 −1 lib/compressor_deflate.c
+2 −2 lib/compressor_liblzma.c
+2 −2 lib/compressor_libzstd.c
+0 −5 lib/config.c
+92 −19 lib/data.c
+9 −9 lib/dedupe.c
+8 −4 lib/dir.c
+1 −6 lib/diskbuf.c
+22 −10 lib/fragments.c
+59 −0 lib/global.c
+399 −0 lib/gzran.c
+136 −0 lib/importer.c
+455 −373 lib/inode.c
+100 −13 lib/io.c
+10 −10 lib/kite_deflate.c
+9 −0 lib/liberofs_base64.h
+11 −11 lib/liberofs_cache.h
+27 −0 lib/liberofs_compress.h
+23 −0 lib/liberofs_gzran.h
+22 −0 lib/liberofs_metabox.h
+52 −0 lib/liberofs_nbd.h
+85 −0 lib/liberofs_oci.h
+5 −12 lib/liberofs_rebuild.h
+44 −0 lib/liberofs_s3.h
+82 −0 lib/metabox.c
+64 −24 lib/namei.c
+38 −18 lib/rebuild.c
+1,575 −0 lib/remotes/oci.c
+765 −0 lib/remotes/s3.c
+41 −0 lib/sha256.c
+8 −0 lib/sha256.h
+90 −12 lib/super.c
+45 −56 lib/tar.c
+252 −198 lib/xattr.c
+39 −64 lib/zmap.c
+13 −0 man/mkfs.erofs.1
+2 −1 mkfs/Makefile.am
+645 −257 mkfs/main.c
+13 −0 mount/Makefile.am
+1,436 −0 mount/main.c