xref: /OK3568_Linux_fs/u-boot/fs/Makefile (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun#
2*4882a593Smuzhiyun# (C) Copyright 2000-2006
3*4882a593Smuzhiyun# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4*4882a593Smuzhiyun# Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
5*4882a593Smuzhiyun#
6*4882a593Smuzhiyun# SPDX-License-Identifier:	GPL-2.0+
7*4882a593Smuzhiyun#
8*4882a593Smuzhiyun
9*4882a593Smuzhiyunifdef CONFIG_SPL_BUILD
10*4882a593Smuzhiyunobj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
11*4882a593Smuzhiyunobj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
12*4882a593Smuzhiyunelse
13*4882a593Smuzhiyunobj-y				+= fs.o
14*4882a593Smuzhiyun
15*4882a593Smuzhiyunobj-$(CONFIG_FS_CBFS) += cbfs/
16*4882a593Smuzhiyunobj-$(CONFIG_CMD_CRAMFS) += cramfs/
17*4882a593Smuzhiyunobj-$(CONFIG_FS_EXT4) += ext4/
18*4882a593Smuzhiyunobj-y += fat/
19*4882a593Smuzhiyunobj-$(CONFIG_FS_JFFS2) += jffs2/
20*4882a593Smuzhiyunobj-$(CONFIG_CMD_REISER) += reiserfs/
21*4882a593Smuzhiyunobj-$(CONFIG_SANDBOX) += sandbox/
22*4882a593Smuzhiyunobj-$(CONFIG_CMD_UBIFS) += ubifs/
23*4882a593Smuzhiyunobj-$(CONFIG_YAFFS2) += yaffs2/
24*4882a593Smuzhiyunobj-$(CONFIG_CMD_ZFS) += zfs/
25*4882a593Smuzhiyunendif
26*4882a593Smuzhiyunobj-y += fs_internal.o
27