├── .github └── workflows │ └── credits.yml ├── .gitignore ├── .readthedocs.yaml ├── COPYING ├── Makefile ├── requirements.txt └── src ├── _static ├── aligned_io.svg ├── erofs_core_format.svg ├── erofs_dataflow.svg ├── erofs_dedupe.svg ├── logo_wide.svg ├── merging_multidev.svg ├── merging_singledev.svg └── unaligned_reclaiming.svg ├── casestudies.md ├── comparison └── dedupe.md ├── conf.py ├── core_ondisk.md ├── credits.md ├── design.md ├── developers.md ├── faq.md ├── features.md ├── index.md ├── install.md ├── merging.md ├── mkfs.md └── roadmap.md /.github/workflows/credits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/.github/workflows/credits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/Makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/_static/aligned_io.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/aligned_io.svg -------------------------------------------------------------------------------- /src/_static/erofs_core_format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/erofs_core_format.svg -------------------------------------------------------------------------------- /src/_static/erofs_dataflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/erofs_dataflow.svg -------------------------------------------------------------------------------- /src/_static/erofs_dedupe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/erofs_dedupe.svg -------------------------------------------------------------------------------- /src/_static/logo_wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/logo_wide.svg -------------------------------------------------------------------------------- /src/_static/merging_multidev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/merging_multidev.svg -------------------------------------------------------------------------------- /src/_static/merging_singledev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/merging_singledev.svg -------------------------------------------------------------------------------- /src/_static/unaligned_reclaiming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/_static/unaligned_reclaiming.svg -------------------------------------------------------------------------------- /src/casestudies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/casestudies.md -------------------------------------------------------------------------------- /src/comparison/dedupe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/comparison/dedupe.md -------------------------------------------------------------------------------- /src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/conf.py -------------------------------------------------------------------------------- /src/core_ondisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/core_ondisk.md -------------------------------------------------------------------------------- /src/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/credits.md -------------------------------------------------------------------------------- /src/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/design.md -------------------------------------------------------------------------------- /src/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/developers.md -------------------------------------------------------------------------------- /src/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/faq.md -------------------------------------------------------------------------------- /src/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/features.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/index.md -------------------------------------------------------------------------------- /src/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/install.md -------------------------------------------------------------------------------- /src/merging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/merging.md -------------------------------------------------------------------------------- /src/mkfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/mkfs.md -------------------------------------------------------------------------------- /src/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erofs/docs/HEAD/src/roadmap.md --------------------------------------------------------------------------------