Filesystems can have a number of directories within them. U-Boot only worries about directories that have been accessed. Add the concept of a directory, with the filesystem as parent. Note that this is not a hierarchical device structure, so UCLASS_DIR devices always have a UCLASS_FS as the parent. Signed-off-by: Simon Glass <sjg@chromium.org>
33 lines
986 B
Makefile
33 lines
986 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
# Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
obj-$(CONFIG_$(PHASE_)FS_LEGACY) += fs_legacy.o fs_internal.o
|
|
obj-$(CONFIG_$(PHASE_)FS) += fs-uclass.o
|
|
obj-$(CONFIG_$(PHASE_)DIR) += dir-uclass.o
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-$(CONFIG_SPL_FS_FAT) += fat/
|
|
obj-$(CONFIG_SPL_FS_EXT4) += ext4/
|
|
obj-$(CONFIG_SPL_FS_CBFS) += cbfs/
|
|
obj-$(CONFIG_SPL_FS_SQUASHFS) += squashfs/
|
|
else
|
|
|
|
obj-$(CONFIG_FS_BTRFS) += btrfs/
|
|
obj-$(CONFIG_FS_CBFS) += cbfs/
|
|
obj-$(CONFIG_CMD_CRAMFS) += cramfs/
|
|
obj-$(CONFIG_FS_EXFAT) += exfat/
|
|
obj-$(CONFIG_FS_EXT4) += ext4/
|
|
obj-$(CONFIG_FS_FAT) += fat/
|
|
obj-$(CONFIG_FS_JFFS2) += jffs2/
|
|
obj-$(CONFIG_SANDBOX) += sandbox/
|
|
obj-$(CONFIG_SEMIHOSTING) += semihostingfs.o
|
|
obj-$(CONFIG_CMD_UBIFS) += ubifs/
|
|
obj-$(CONFIG_YAFFS2) += yaffs2/
|
|
obj-$(CONFIG_CMD_ZFS) += zfs/
|
|
obj-$(CONFIG_FS_SQUASHFS) += squashfs/
|
|
obj-$(CONFIG_FS_EROFS) += erofs/
|
|
endif
|