2012-10-22 06:43:51 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
# Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2012-10-22 06:43:51 +00:00
|
|
|
#
|
|
|
|
|
2013-11-11 05:36:09 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
|
2014-10-15 15:53:12 +00:00
|
|
|
obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
|
2013-11-11 05:36:09 +00:00
|
|
|
else
|
2013-10-17 08:34:58 +00:00
|
|
|
obj-y += fs.o
|
2013-10-17 11:38:53 +00:00
|
|
|
|
2013-11-11 05:36:10 +00:00
|
|
|
obj-$(CONFIG_CMD_CBFS) += cbfs/
|
|
|
|
obj-$(CONFIG_CMD_CRAMFS) += cramfs/
|
|
|
|
obj-$(CONFIG_FS_EXT4) += ext4/
|
2013-11-11 05:36:09 +00:00
|
|
|
obj-y += fat/
|
2013-11-11 05:36:10 +00:00
|
|
|
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/
|
2013-11-11 05:36:09 +00:00
|
|
|
endif
|