mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
e471e5942c
Since the JFS code was first added to Linux, there has been code hidden in ifdefs for some potential future features such as defragmentation and supporting block sizes other than 4KB. There has been no ongoing development on JFS for many years, so it's past time to remove this dead code from the source. Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
16 lines
462 B
Makefile
16 lines
462 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux JFS filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_JFS_FS) += jfs.o
|
|
|
|
jfs-y := super.o file.o inode.o namei.o jfs_mount.o jfs_umount.o \
|
|
jfs_xtree.o jfs_imap.o jfs_debug.o jfs_dmap.o \
|
|
jfs_unicode.o jfs_dtree.o jfs_inode.o jfs_discard.o \
|
|
jfs_extent.o symlink.o jfs_metapage.o \
|
|
jfs_logmgr.o jfs_txnmgr.o jfs_uniupr.o \
|
|
resize.o xattr.o ioctl.o
|
|
|
|
jfs-$(CONFIG_JFS_POSIX_ACL) += acl.o
|