]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - fs/Makefile
mmc: omap_hsmmc: enable 8bit interface for eMMC for AM43xx
[karo-tx-uboot.git] / fs / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
5 #
6 # SPDX-License-Identifier:      GPL-2.0+
7 #
8
9 ifdef CONFIG_SPL_BUILD
10 obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
11 obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
12 else
13 obj-y                           += fs.o
14
15 obj-$(CONFIG_CMD_CBFS) += cbfs/
16 obj-$(CONFIG_CMD_CRAMFS) += cramfs/
17 obj-$(CONFIG_FS_EXT4) += ext4/
18 obj-y += fat/
19 obj-$(CONFIG_CMD_JFFS2) += jffs2/
20 obj-$(CONFIG_CMD_REISER) += reiserfs/
21 obj-$(CONFIG_SANDBOX) += sandbox/
22 obj-$(CONFIG_CMD_UBIFS) += ubifs/
23 obj-$(CONFIG_YAFFS2) += yaffs2/
24 obj-$(CONFIG_CMD_ZFS) += zfs/
25 endif