mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
f3a9b3758e
Use the UCS-2 upper case tables from nls, that are shared with smb. This code in JFS is hard to test, so we're only reusing the same tables (which are identical), not trying to reuse the rest of the helper functions. Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> Reviewed-by: Dave Kleikamp <dave.kleikamp@oracle.com> Signed-off-by: Steve French <stfrench@microsoft.com>
16 lines
449 B
Makefile
16 lines
449 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 \
|
|
resize.o xattr.o ioctl.o
|
|
|
|
jfs-$(CONFIG_JFS_POSIX_ACL) += acl.o
|