X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=fs%2FMakefile;h=51d06fccb61ecbe0ad853e021f060fd1b4fdecd4;hb=45d9337ec351abc2f146437bc5fe8365d0dd3307;hp=ea2eb0967bea4b6ab13ff97b5824dc0ff3735e95;hpb=35c792754c0feb894781e1eee6ab6b6624beb309;p=oweals%2Fu-boot.git diff --git a/fs/Makefile b/fs/Makefile index ea2eb0967b..51d06fccb6 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -6,4 +6,20 @@ # SPDX-License-Identifier: GPL-2.0+ # +ifdef CONFIG_SPL_BUILD +obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/ +obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/ +else obj-y += fs.o + +obj-$(CONFIG_CMD_CBFS) += cbfs/ +obj-$(CONFIG_CMD_CRAMFS) += cramfs/ +obj-$(CONFIG_FS_EXT4) += ext4/ +obj-y += fat/ +obj-$(CONFIG_CMD_JFFS2) += jffs2/ +obj-$(CONFIG_CMD_REISER) += reiserfs/ +obj-$(CONFIG_SANDBOX) += sandbox/ +obj-$(CONFIG_CMD_UBIFS) += ubifs/ +obj-$(CONFIG_YAFFS2) += yaffs2/ +obj-$(CONFIG_CMD_ZFS) += zfs/ +endif