Blame view

fs/Makefile 756 Bytes
83d290c56   Tom Rini   SPDX: Convert all...
1
  # SPDX-License-Identifier: GPL-2.0+
045fa1e11   Stephen Warren   fs: add filesyste...
2
3
4
5
  #
  # (C) Copyright 2000-2006
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
045fa1e11   Stephen Warren   fs: add filesyste...
6

57c3e5fcf   Masahiro Yamada   Makefile: move fs...
7
  ifdef CONFIG_SPL_BUILD
48e2f0c96   Keerthy   fs: Makefile: Add...
8
  obj-$(CONFIG_FS_LOADER) += fs.o
0c3a9ed40   Tien Fong Chee   spl: Kconfig: Rep...
9
  obj-$(CONFIG_SPL_FS_FAT) += fat/
f4b409247   Tien Fong Chee   spl: Kconfig: Rep...
10
  obj-$(CONFIG_SPL_FS_EXT4) += ext4/
72b2465c6   Simon Glass   cbfs: Allow CBFS ...
11
  obj-$(CONFIG_SPL_FS_CBFS) += cbfs/
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
12
  else
35c792754   Masahiro Yamada   fs: convert makef...
13
  obj-y				+= fs.o
e82004bc6   Masahiro Yamada   fs: move some fil...
14

0c936ee31   Marek BehĂșn   fs: btrfs: Add U-...
15
  obj-$(CONFIG_FS_BTRFS) += btrfs/
deb959991   Simon Glass   fs: Kconfig: Add ...
16
  obj-$(CONFIG_FS_CBFS) += cbfs/
4678d7425   Masahiro Yamada   fs: descend into ...
17
18
  obj-$(CONFIG_CMD_CRAMFS) += cramfs/
  obj-$(CONFIG_FS_EXT4) += ext4/
423eba241   Ismael Luceno Cortes   fs: fat: Build on...
19
  obj-$(CONFIG_FS_FAT) += fat/
59e12a4a8   Simon Glass   fs: Kconfig: Add ...
20
  obj-$(CONFIG_FS_JFFS2) += jffs2/
4678d7425   Masahiro Yamada   fs: descend into ...
21
22
23
24
25
  obj-$(CONFIG_CMD_REISER) += reiserfs/
  obj-$(CONFIG_SANDBOX) += sandbox/
  obj-$(CONFIG_CMD_UBIFS) += ubifs/
  obj-$(CONFIG_YAFFS2) += yaffs2/
  obj-$(CONFIG_CMD_ZFS) += zfs/
57c3e5fcf   Masahiro Yamada   Makefile: move fs...
26
  endif
5994e8b64   Marek BehĂșn   fs: Create a comm...
27
  obj-y += fs_internal.o