fs/squashfs: new filesystem
authorJoao Marcos Costa <joaomarcos.costa@bootlin.com>
Thu, 30 Jul 2020 13:33:47 +0000 (15:33 +0200)
committerTom Rini <trini@konsulko.com>
Sat, 8 Aug 2020 02:31:32 +0000 (22:31 -0400)
commitc51006130370b48b7eb5a93ada745385aa27f6bf
treeecd8782353da828ee0761eaa83d6ed2fe3f6c9bd
parent550a9e7902ce2a6103d97d70a22bad64e4fab7fd
fs/squashfs: new filesystem

Add support for SquashFS filesystem. Right now, it does not support
compression but support for zlib will be added in a follow-up commit.

Signed-off-by: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
16 files changed:
MAINTAINERS
common/spl/Kconfig
fs/Kconfig
fs/Makefile
fs/fs.c
fs/squashfs/Kconfig [new file with mode: 0644]
fs/squashfs/Makefile [new file with mode: 0644]
fs/squashfs/sqfs.c [new file with mode: 0644]
fs/squashfs/sqfs_decompressor.c [new file with mode: 0644]
fs/squashfs/sqfs_decompressor.h [new file with mode: 0644]
fs/squashfs/sqfs_dir.c [new file with mode: 0644]
fs/squashfs/sqfs_filesystem.h [new file with mode: 0644]
fs/squashfs/sqfs_inode.c [new file with mode: 0644]
fs/squashfs/sqfs_utils.h [new file with mode: 0644]
include/fs.h
include/squashfs.h [new file with mode: 0644]