Add a config option to control whether journal (jbd2) support is included for ext4 filesystems. This defaults to y Update fs/Makefile to conditionally include jbd2/ based on this config instead of FS_EXT4L. Signed-off-by: Simon Glass <simon.glass@canonical.com>
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
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
|
|
obj-$(CONFIG_$(PHASE_)FILE) += file-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_EXT4L) += ext4l/
|
|
obj-$(CONFIG_EXT4_JOURNAL) += jbd2/
|
|
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
|