├── .gitignore ├── .travis.yml ├── ACKNOWLEDGEMENTS ├── CHANGES ├── COPYING ├── INSTALL ├── README ├── README.md ├── RELEASE-README ├── RELEASE-READMEs ├── DONATIONS ├── PERFORMANCE.README ├── README-2.0 ├── README-2.0-AMD64 ├── README-2.1 ├── README-3.0 ├── README-3.1 ├── README-3.2 ├── README-3.3 ├── README-4.0 ├── README-4.1 ├── README-4.2 ├── README-4.3 └── pseudo-file.example ├── SYNC └── squashfs-tools ├── Makefile ├── action.c ├── action.h ├── caches-queues-lists.c ├── caches-queues-lists.h ├── compressor.c ├── compressor.h ├── create-release.sh ├── error.h ├── fnmatch_compat.h ├── gzip_wrapper.c ├── gzip_wrapper.h ├── info.c ├── info.h ├── lz4_wrapper.c ├── lz4_wrapper.h ├── lzma_wrapper.c ├── lzma_xz_options.c ├── lzma_xz_options.h ├── lzma_xz_wrapper.c ├── lzo_wrapper.c ├── lzo_wrapper.h ├── mksquashfs.c ├── mksquashfs.h ├── process_fragments.c ├── process_fragments.h ├── progressbar.c ├── progressbar.h ├── pseudo.c ├── pseudo.h ├── read_file.c ├── read_fs.c ├── read_fs.h ├── read_xattrs.c ├── restore.c ├── restore.h ├── sort.c ├── sort.h ├── squashfs_compat.h ├── squashfs_fs.h ├── squashfs_swap.h ├── swap.c ├── unsquash-1.c ├── unsquash-2.c ├── unsquash-3.c ├── unsquash-4.c ├── unsquashfs.c ├── unsquashfs.h ├── unsquashfs_info.c ├── unsquashfs_info.h ├── unsquashfs_xattr.c ├── version.sh ├── xattr.c ├── xattr.h ├── xz_wrapper.c ├── xz_wrapper.h ├── zstd_wrapper.c └── zstd_wrapper.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/.travis.yml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-README -------------------------------------------------------------------------------- /RELEASE-READMEs/DONATIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/DONATIONS -------------------------------------------------------------------------------- /RELEASE-READMEs/PERFORMANCE.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/PERFORMANCE.README -------------------------------------------------------------------------------- /RELEASE-READMEs/README-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-2.0 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-2.0-AMD64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-2.0-AMD64 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-2.1 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-3.0 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-3.1 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-3.2 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-3.3 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-4.0 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-4.1 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-4.2 -------------------------------------------------------------------------------- /RELEASE-READMEs/README-4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/README-4.3 -------------------------------------------------------------------------------- /RELEASE-READMEs/pseudo-file.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/RELEASE-READMEs/pseudo-file.example -------------------------------------------------------------------------------- /SYNC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/SYNC -------------------------------------------------------------------------------- /squashfs-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/Makefile -------------------------------------------------------------------------------- /squashfs-tools/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/action.c -------------------------------------------------------------------------------- /squashfs-tools/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/action.h -------------------------------------------------------------------------------- /squashfs-tools/caches-queues-lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/caches-queues-lists.c -------------------------------------------------------------------------------- /squashfs-tools/caches-queues-lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/caches-queues-lists.h -------------------------------------------------------------------------------- /squashfs-tools/compressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/compressor.c -------------------------------------------------------------------------------- /squashfs-tools/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/compressor.h -------------------------------------------------------------------------------- /squashfs-tools/create-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/create-release.sh -------------------------------------------------------------------------------- /squashfs-tools/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/error.h -------------------------------------------------------------------------------- /squashfs-tools/fnmatch_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/fnmatch_compat.h -------------------------------------------------------------------------------- /squashfs-tools/gzip_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/gzip_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/gzip_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/gzip_wrapper.h -------------------------------------------------------------------------------- /squashfs-tools/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/info.c -------------------------------------------------------------------------------- /squashfs-tools/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/info.h -------------------------------------------------------------------------------- /squashfs-tools/lz4_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lz4_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/lz4_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lz4_wrapper.h -------------------------------------------------------------------------------- /squashfs-tools/lzma_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lzma_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/lzma_xz_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lzma_xz_options.c -------------------------------------------------------------------------------- /squashfs-tools/lzma_xz_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lzma_xz_options.h -------------------------------------------------------------------------------- /squashfs-tools/lzma_xz_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lzma_xz_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/lzo_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lzo_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/lzo_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/lzo_wrapper.h -------------------------------------------------------------------------------- /squashfs-tools/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/mksquashfs.c -------------------------------------------------------------------------------- /squashfs-tools/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/mksquashfs.h -------------------------------------------------------------------------------- /squashfs-tools/process_fragments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/process_fragments.c -------------------------------------------------------------------------------- /squashfs-tools/process_fragments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/process_fragments.h -------------------------------------------------------------------------------- /squashfs-tools/progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/progressbar.c -------------------------------------------------------------------------------- /squashfs-tools/progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/progressbar.h -------------------------------------------------------------------------------- /squashfs-tools/pseudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/pseudo.c -------------------------------------------------------------------------------- /squashfs-tools/pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/pseudo.h -------------------------------------------------------------------------------- /squashfs-tools/read_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/read_file.c -------------------------------------------------------------------------------- /squashfs-tools/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/read_fs.c -------------------------------------------------------------------------------- /squashfs-tools/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/read_fs.h -------------------------------------------------------------------------------- /squashfs-tools/read_xattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/read_xattrs.c -------------------------------------------------------------------------------- /squashfs-tools/restore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/restore.c -------------------------------------------------------------------------------- /squashfs-tools/restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/restore.h -------------------------------------------------------------------------------- /squashfs-tools/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/sort.c -------------------------------------------------------------------------------- /squashfs-tools/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/sort.h -------------------------------------------------------------------------------- /squashfs-tools/squashfs_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/squashfs_compat.h -------------------------------------------------------------------------------- /squashfs-tools/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/squashfs_fs.h -------------------------------------------------------------------------------- /squashfs-tools/squashfs_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/squashfs_swap.h -------------------------------------------------------------------------------- /squashfs-tools/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/swap.c -------------------------------------------------------------------------------- /squashfs-tools/unsquash-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquash-1.c -------------------------------------------------------------------------------- /squashfs-tools/unsquash-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquash-2.c -------------------------------------------------------------------------------- /squashfs-tools/unsquash-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquash-3.c -------------------------------------------------------------------------------- /squashfs-tools/unsquash-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquash-4.c -------------------------------------------------------------------------------- /squashfs-tools/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquashfs.c -------------------------------------------------------------------------------- /squashfs-tools/unsquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquashfs.h -------------------------------------------------------------------------------- /squashfs-tools/unsquashfs_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquashfs_info.c -------------------------------------------------------------------------------- /squashfs-tools/unsquashfs_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquashfs_info.h -------------------------------------------------------------------------------- /squashfs-tools/unsquashfs_xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/unsquashfs_xattr.c -------------------------------------------------------------------------------- /squashfs-tools/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/version.sh -------------------------------------------------------------------------------- /squashfs-tools/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/xattr.c -------------------------------------------------------------------------------- /squashfs-tools/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/xattr.h -------------------------------------------------------------------------------- /squashfs-tools/xz_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/xz_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/xz_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/xz_wrapper.h -------------------------------------------------------------------------------- /squashfs-tools/zstd_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/zstd_wrapper.c -------------------------------------------------------------------------------- /squashfs-tools/zstd_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refi64/unappimage/HEAD/squashfs-tools/zstd_wrapper.h --------------------------------------------------------------------------------