]> git.ipfire.org Git - thirdparty/u-boot.git/blob - fs/Makefile
Merge patch series "cmd: add scmi command"
[thirdparty/u-boot.git] / fs / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
6
7 ifdef CONFIG_SPL_BUILD
8 obj-$(CONFIG_FS_LOADER) += fs.o
9 obj-$(CONFIG_SPL_FS_FAT) += fat/
10 obj-$(CONFIG_SPL_FS_EXT4) += ext4/
11 obj-$(CONFIG_SPL_FS_CBFS) += cbfs/
12 obj-$(CONFIG_SPL_FS_SQUASHFS) += squashfs/
13 else
14 obj-y += fs.o
15
16 obj-$(CONFIG_FS_BTRFS) += btrfs/
17 obj-$(CONFIG_FS_CBFS) += cbfs/
18 obj-$(CONFIG_CMD_CRAMFS) += cramfs/
19 obj-$(CONFIG_FS_EXT4) += ext4/
20 obj-$(CONFIG_FS_FAT) += fat/
21 obj-$(CONFIG_FS_JFFS2) += jffs2/
22 obj-$(CONFIG_CMD_REISER) += reiserfs/
23 obj-$(CONFIG_SANDBOX) += sandbox/
24 obj-$(CONFIG_SEMIHOSTING) += semihostingfs.o
25 obj-$(CONFIG_CMD_UBIFS) += ubifs/
26 obj-$(CONFIG_YAFFS2) += yaffs2/
27 obj-$(CONFIG_CMD_ZFS) += zfs/
28 obj-$(CONFIG_FS_SQUASHFS) += squashfs/
29 obj-$(CONFIG_FS_EROFS) += erofs/
30 endif
31 obj-y += fs_internal.o