aboutsummaryrefslogtreecommitdiff
path: root/fs/Makefile
diff options
context:
space:
mode:
authorJoao Marcos Costa <joaomarcos.costa@bootlin.com>2020-07-30 15:33:47 +0200
committerTom Rini <trini@konsulko.com>2020-08-07 22:31:32 -0400
commitc51006130370b48b7eb5a93ada745385aa27f6bf (patch)
treeecd8782353da828ee0761eaa83d6ed2fe3f6c9bd /fs/Makefile
parent550a9e7902ce2a6103d97d70a22bad64e4fab7fd (diff)
downloadu-boot-c51006130370b48b7eb5a93ada745385aa27f6bf.zip
u-boot-c51006130370b48b7eb5a93ada745385aa27f6bf.tar.gz
u-boot-c51006130370b48b7eb5a93ada745385aa27f6bf.tar.bz2
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>
Diffstat (limited to 'fs/Makefile')
-rw-r--r--fs/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile
index 42e669c..937cbcf 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -9,6 +9,7 @@ obj-$(CONFIG_FS_LOADER) += fs.o
obj-$(CONFIG_SPL_FS_FAT) += fat/
obj-$(CONFIG_SPL_FS_EXT4) += ext4/
obj-$(CONFIG_SPL_FS_CBFS) += cbfs/
+obj-$(CONFIG_SPL_FS_SQUASHFS) += squashfs/
else
obj-y += fs.o
@@ -23,5 +24,6 @@ obj-$(CONFIG_SANDBOX) += sandbox/
obj-$(CONFIG_CMD_UBIFS) += ubifs/
obj-$(CONFIG_YAFFS2) += yaffs2/
obj-$(CONFIG_CMD_ZFS) += zfs/
+obj-$(CONFIG_FS_SQUASHFS) += squashfs/
endif
obj-y += fs_internal.o