xref: /rk3399_rockchip-uboot/fs/Makefile (revision 57c3e5fcf2cbc791d9507c8b8c09df1ef21c043a)
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
9ifdef CONFIG_SPL_BUILD
10obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
11else
12obj-y				+= fs.o
13
14obj-y += cbfs/
15obj-y += cramfs/
16obj-y += ext4/
17obj-y += fat/
18obj-y += fdos/
19obj-y += jffs2/
20obj-y += reiserfs/
21obj-y += sandbox/
22obj-y += ubifs/
23obj-y += yaffs2/
24obj-y += zfs/
25endif
26