]> git.ipfire.org Git - people/ms/u-boot.git/blame_incremental - fs/Makefile
arc: make sure _start is in the beginning of .text section
[people/ms/u-boot.git] / fs / Makefile
... / ...
CommitLineData
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/
11obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
12else
13obj-y += fs.o
14
15obj-$(CONFIG_CMD_CBFS) += cbfs/
16obj-$(CONFIG_CMD_CRAMFS) += cramfs/
17obj-$(CONFIG_FS_EXT4) += ext4/
18obj-y += fat/
19obj-$(CONFIG_CMD_JFFS2) += jffs2/
20obj-$(CONFIG_CMD_REISER) += reiserfs/
21obj-$(CONFIG_SANDBOX) += sandbox/
22obj-$(CONFIG_CMD_UBIFS) += ubifs/
23obj-$(CONFIG_YAFFS2) += yaffs2/
24obj-$(CONFIG_CMD_ZFS) += zfs/
25endif