]> Git Repo - J-u-boot.git/blame - fs/Makefile
Merge commit '0344c602eadc0802776b65ff90f0a02c856cf53c' as 'lib/mbedtls/external...
[J-u-boot.git] / fs / Makefile
CommitLineData
83d290c5 1# SPDX-License-Identifier: GPL-2.0+
045fa1e1
SW
2#
3# (C) Copyright 2000-2006
4# Wolfgang Denk, DENX Software Engineering, [email protected].
5# Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
045fa1e1 6
57c3e5fc 7ifdef CONFIG_SPL_BUILD
a280368b 8obj-$(CONFIG_SPL_FS_LOADER) += fs.o
0c3a9ed4 9obj-$(CONFIG_SPL_FS_FAT) += fat/
f4b40924 10obj-$(CONFIG_SPL_FS_EXT4) += ext4/
72b2465c 11obj-$(CONFIG_SPL_FS_CBFS) += cbfs/
c5100613 12obj-$(CONFIG_SPL_FS_SQUASHFS) += squashfs/
57c3e5fc 13else
35c79275 14obj-y += fs.o
e82004bc 15
0c936ee3 16obj-$(CONFIG_FS_BTRFS) += btrfs/
deb95999 17obj-$(CONFIG_FS_CBFS) += cbfs/
4678d742
MY
18obj-$(CONFIG_CMD_CRAMFS) += cramfs/
19obj-$(CONFIG_FS_EXT4) += ext4/
423eba24 20obj-$(CONFIG_FS_FAT) += fat/
59e12a4a 21obj-$(CONFIG_FS_JFFS2) += jffs2/
4678d742 22obj-$(CONFIG_SANDBOX) += sandbox/
f676b451 23obj-$(CONFIG_SEMIHOSTING) += semihostingfs.o
4678d742
MY
24obj-$(CONFIG_CMD_UBIFS) += ubifs/
25obj-$(CONFIG_YAFFS2) += yaffs2/
26obj-$(CONFIG_CMD_ZFS) += zfs/
c5100613 27obj-$(CONFIG_FS_SQUASHFS) += squashfs/
830613f8 28obj-$(CONFIG_FS_EROFS) += erofs/
57c3e5fc 29endif
5994e8b6 30obj-y += fs_internal.o
This page took 0.347837 seconds and 4 git commands to generate.