1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for the Linux filesystems. 2 # Makefile for the Linux filesystems. 4 # 3 # 5 # 14 Sep 2000, Christoph Hellwig <hch@infradead 4 # 14 Sep 2000, Christoph Hellwig <hch@infradead.org> 6 # Rewritten to use lists instead of if-stateme 5 # Rewritten to use lists instead of if-statements. 7 # 6 # 8 7 9 << 10 obj-y := open.o read_write.o file_table 8 obj-y := open.o read_write.o file_table.o super.o \ 11 char_dev.o stat.o exec.o pipe. 9 char_dev.o stat.o exec.o pipe.o namei.o fcntl.o \ 12 ioctl.o readdir.o select.o dca 10 ioctl.o readdir.o select.o dcache.o inode.o \ 13 attr.o bad_inode.o file.o file 11 attr.o bad_inode.o file.o filesystems.o namespace.o \ 14 seq_file.o xattr.o libfs.o fs- 12 seq_file.o xattr.o libfs.o fs-writeback.o \ 15 pnode.o splice.o sync.o utimes !! 13 pnode.o splice.o sync.o utimes.o \ 16 stack.o fs_struct.o statfs.o f !! 14 stack.o fs_struct.o statfs.o 17 fs_types.o fs_context.o fs_par !! 15 18 kernel_read_file.o mnt_idmappi !! 16 ifeq ($(CONFIG_BLOCK),y) 19 !! 17 obj-y += buffer.o bio.o block_dev.o direct-io.o mpage.o ioprio.o 20 obj-$(CONFIG_BUFFER_HEAD) += buffer.o mp !! 18 else 21 obj-$(CONFIG_PROC_FS) += proc_namesp !! 19 obj-y += no-block.o 22 obj-$(CONFIG_LEGACY_DIRECT_IO) += direct-io.o !! 20 endif >> 21 >> 22 obj-$(CONFIG_PROC_FS) += proc_namespace.o >> 23 >> 24 obj-$(CONFIG_BLK_DEV_INTEGRITY) += bio-integrity.o 23 obj-y += notify/ 25 obj-y += notify/ 24 obj-$(CONFIG_EPOLL) += eventpoll.o 26 obj-$(CONFIG_EPOLL) += eventpoll.o 25 obj-y += anon_inodes !! 27 obj-$(CONFIG_ANON_INODES) += anon_inodes.o 26 obj-$(CONFIG_SIGNALFD) += signalfd.o 28 obj-$(CONFIG_SIGNALFD) += signalfd.o 27 obj-$(CONFIG_TIMERFD) += timerfd.o 29 obj-$(CONFIG_TIMERFD) += timerfd.o 28 obj-$(CONFIG_EVENTFD) += eventfd.o 30 obj-$(CONFIG_EVENTFD) += eventfd.o 29 obj-$(CONFIG_USERFAULTFD) += userfaultfd << 30 obj-$(CONFIG_AIO) += aio.o 31 obj-$(CONFIG_AIO) += aio.o 31 obj-$(CONFIG_FS_DAX) += dax.o << 32 obj-$(CONFIG_FS_ENCRYPTION) += crypto/ << 33 obj-$(CONFIG_FS_VERITY) += verity/ << 34 obj-$(CONFIG_FILE_LOCKING) += locks.o 32 obj-$(CONFIG_FILE_LOCKING) += locks.o >> 33 obj-$(CONFIG_COMPAT) += compat.o compat_ioctl.o >> 34 obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o >> 35 obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o 35 obj-$(CONFIG_BINFMT_MISC) += binfmt_misc 36 obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o 36 obj-$(CONFIG_BINFMT_SCRIPT) += binfmt_scri 37 obj-$(CONFIG_BINFMT_SCRIPT) += binfmt_script.o 37 obj-$(CONFIG_BINFMT_ELF) += binfmt_elf. 38 obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o 38 obj-$(CONFIG_COMPAT_BINFMT_ELF) += compat_binf 39 obj-$(CONFIG_COMPAT_BINFMT_ELF) += compat_binfmt_elf.o 39 obj-$(CONFIG_BINFMT_ELF_FDPIC) += binfmt_elf_ 40 obj-$(CONFIG_BINFMT_ELF_FDPIC) += binfmt_elf_fdpic.o >> 41 obj-$(CONFIG_BINFMT_SOM) += binfmt_som.o 40 obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat 42 obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat.o 41 43 42 obj-$(CONFIG_FS_STACK) += backing-fil << 43 obj-$(CONFIG_FS_MBCACHE) += mbcache.o 44 obj-$(CONFIG_FS_MBCACHE) += mbcache.o 44 obj-$(CONFIG_FS_POSIX_ACL) += posix_acl.o !! 45 obj-$(CONFIG_FS_POSIX_ACL) += posix_acl.o xattr_acl.o 45 obj-$(CONFIG_NFS_COMMON) += nfs_common/ 46 obj-$(CONFIG_NFS_COMMON) += nfs_common/ >> 47 obj-$(CONFIG_GENERIC_ACL) += generic_acl.o 46 obj-$(CONFIG_COREDUMP) += coredump.o 48 obj-$(CONFIG_COREDUMP) += coredump.o 47 obj-$(CONFIG_SYSCTL) += drop_caches !! 49 obj-$(CONFIG_SYSCTL) += drop_caches.o 48 50 49 obj-$(CONFIG_FHANDLE) += fhandle.o 51 obj-$(CONFIG_FHANDLE) += fhandle.o 50 obj-y += iomap/ << 51 52 52 obj-y += quota/ 53 obj-y += quota/ 53 54 54 obj-$(CONFIG_PROC_FS) += proc/ 55 obj-$(CONFIG_PROC_FS) += proc/ 55 obj-$(CONFIG_KERNFS) += kernfs/ << 56 obj-$(CONFIG_SYSFS) += sysfs/ 56 obj-$(CONFIG_SYSFS) += sysfs/ 57 obj-$(CONFIG_CONFIGFS_FS) += configfs/ 57 obj-$(CONFIG_CONFIGFS_FS) += configfs/ 58 obj-y += devpts/ 58 obj-y += devpts/ 59 59 >> 60 obj-$(CONFIG_PROFILING) += dcookies.o 60 obj-$(CONFIG_DLM) += dlm/ 61 obj-$(CONFIG_DLM) += dlm/ 61 62 62 # Do not add any filesystems before this line 63 # Do not add any filesystems before this line 63 obj-$(CONFIG_NETFS_SUPPORT) += netfs/ !! 64 obj-$(CONFIG_FSCACHE) += fscache/ 64 obj-$(CONFIG_REISERFS_FS) += reiserfs/ 65 obj-$(CONFIG_REISERFS_FS) += reiserfs/ 65 obj-$(CONFIG_EXT4_FS) += ext4/ !! 66 obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3 66 # We place ext4 before ext2 so that clean ext3 << 67 # ext2 driver, which doesn't know about journa << 68 # by giving the rootfstype= parameter. << 69 obj-$(CONFIG_EXT2_FS) += ext2/ 67 obj-$(CONFIG_EXT2_FS) += ext2/ >> 68 # We place ext4 after ext2 so plain ext2 root fs's are mounted using ext2 >> 69 # unless explicitly requested by rootfstype >> 70 obj-$(CONFIG_EXT4_FS) += ext4/ >> 71 obj-$(CONFIG_JBD) += jbd/ 70 obj-$(CONFIG_JBD2) += jbd2/ 72 obj-$(CONFIG_JBD2) += jbd2/ 71 obj-$(CONFIG_CRAMFS) += cramfs/ 73 obj-$(CONFIG_CRAMFS) += cramfs/ 72 obj-$(CONFIG_SQUASHFS) += squashfs/ 74 obj-$(CONFIG_SQUASHFS) += squashfs/ 73 obj-y += ramfs/ 75 obj-y += ramfs/ 74 obj-$(CONFIG_HUGETLBFS) += hugetlbfs/ 76 obj-$(CONFIG_HUGETLBFS) += hugetlbfs/ 75 obj-$(CONFIG_CODA_FS) += coda/ 77 obj-$(CONFIG_CODA_FS) += coda/ 76 obj-$(CONFIG_MINIX_FS) += minix/ 78 obj-$(CONFIG_MINIX_FS) += minix/ 77 obj-$(CONFIG_FAT_FS) += fat/ 79 obj-$(CONFIG_FAT_FS) += fat/ 78 obj-$(CONFIG_EXFAT_FS) += exfat/ << 79 obj-$(CONFIG_BFS_FS) += bfs/ 80 obj-$(CONFIG_BFS_FS) += bfs/ 80 obj-$(CONFIG_ISO9660_FS) += isofs/ 81 obj-$(CONFIG_ISO9660_FS) += isofs/ 81 obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # 82 obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # Before hfs to find wrapped HFS+ 82 obj-$(CONFIG_HFS_FS) += hfs/ 83 obj-$(CONFIG_HFS_FS) += hfs/ 83 obj-$(CONFIG_ECRYPT_FS) += ecryptfs/ 84 obj-$(CONFIG_ECRYPT_FS) += ecryptfs/ 84 obj-$(CONFIG_VXFS_FS) += freevxfs/ 85 obj-$(CONFIG_VXFS_FS) += freevxfs/ 85 obj-$(CONFIG_NFS_FS) += nfs/ 86 obj-$(CONFIG_NFS_FS) += nfs/ 86 obj-$(CONFIG_EXPORTFS) += exportfs/ 87 obj-$(CONFIG_EXPORTFS) += exportfs/ 87 obj-$(CONFIG_NFSD) += nfsd/ 88 obj-$(CONFIG_NFSD) += nfsd/ 88 obj-$(CONFIG_LOCKD) += lockd/ 89 obj-$(CONFIG_LOCKD) += lockd/ 89 obj-$(CONFIG_NLS) += nls/ 90 obj-$(CONFIG_NLS) += nls/ 90 obj-y += unicode/ << 91 obj-$(CONFIG_SYSV_FS) += sysv/ 91 obj-$(CONFIG_SYSV_FS) += sysv/ 92 obj-$(CONFIG_SMBFS) += smb/ !! 92 obj-$(CONFIG_CIFS) += cifs/ >> 93 obj-$(CONFIG_NCP_FS) += ncpfs/ 93 obj-$(CONFIG_HPFS_FS) += hpfs/ 94 obj-$(CONFIG_HPFS_FS) += hpfs/ 94 obj-$(CONFIG_NTFS3_FS) += ntfs3/ !! 95 obj-$(CONFIG_NTFS_FS) += ntfs/ 95 obj-$(CONFIG_UFS_FS) += ufs/ 96 obj-$(CONFIG_UFS_FS) += ufs/ 96 obj-$(CONFIG_EFS_FS) += efs/ 97 obj-$(CONFIG_EFS_FS) += efs/ 97 obj-$(CONFIG_JFFS2_FS) += jffs2/ 98 obj-$(CONFIG_JFFS2_FS) += jffs2/ >> 99 obj-$(CONFIG_LOGFS) += logfs/ 98 obj-$(CONFIG_UBIFS_FS) += ubifs/ 100 obj-$(CONFIG_UBIFS_FS) += ubifs/ 99 obj-$(CONFIG_AFFS_FS) += affs/ 101 obj-$(CONFIG_AFFS_FS) += affs/ 100 obj-$(CONFIG_ROMFS_FS) += romfs/ 102 obj-$(CONFIG_ROMFS_FS) += romfs/ 101 obj-$(CONFIG_QNX4FS_FS) += qnx4/ 103 obj-$(CONFIG_QNX4FS_FS) += qnx4/ 102 obj-$(CONFIG_QNX6FS_FS) += qnx6/ 104 obj-$(CONFIG_QNX6FS_FS) += qnx6/ 103 obj-$(CONFIG_AUTOFS_FS) += autofs/ !! 105 obj-$(CONFIG_AUTOFS4_FS) += autofs4/ 104 obj-$(CONFIG_ADFS_FS) += adfs/ 106 obj-$(CONFIG_ADFS_FS) += adfs/ 105 obj-$(CONFIG_FUSE_FS) += fuse/ 107 obj-$(CONFIG_FUSE_FS) += fuse/ 106 obj-$(CONFIG_OVERLAY_FS) += overlayfs/ << 107 obj-$(CONFIG_ORANGEFS_FS) += orangefs/ << 108 obj-$(CONFIG_UDF_FS) += udf/ 108 obj-$(CONFIG_UDF_FS) += udf/ 109 obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ 109 obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ 110 obj-$(CONFIG_OMFS_FS) += omfs/ 110 obj-$(CONFIG_OMFS_FS) += omfs/ 111 obj-$(CONFIG_JFS_FS) += jfs/ 111 obj-$(CONFIG_JFS_FS) += jfs/ 112 obj-$(CONFIG_XFS_FS) += xfs/ 112 obj-$(CONFIG_XFS_FS) += xfs/ 113 obj-$(CONFIG_9P_FS) += 9p/ 113 obj-$(CONFIG_9P_FS) += 9p/ 114 obj-$(CONFIG_AFS_FS) += afs/ 114 obj-$(CONFIG_AFS_FS) += afs/ 115 obj-$(CONFIG_NILFS2_FS) += nilfs2/ 115 obj-$(CONFIG_NILFS2_FS) += nilfs2/ 116 obj-$(CONFIG_BEFS_FS) += befs/ 116 obj-$(CONFIG_BEFS_FS) += befs/ 117 obj-y += hostfs/ !! 117 obj-$(CONFIG_HOSTFS) += hostfs/ >> 118 obj-$(CONFIG_HPPFS) += hppfs/ 118 obj-$(CONFIG_CACHEFILES) += cachefiles/ 119 obj-$(CONFIG_CACHEFILES) += cachefiles/ 119 obj-$(CONFIG_DEBUG_FS) += debugfs/ 120 obj-$(CONFIG_DEBUG_FS) += debugfs/ 120 obj-$(CONFIG_TRACING) += tracefs/ << 121 obj-$(CONFIG_OCFS2_FS) += ocfs2/ 121 obj-$(CONFIG_OCFS2_FS) += ocfs2/ 122 obj-$(CONFIG_BTRFS_FS) += btrfs/ 122 obj-$(CONFIG_BTRFS_FS) += btrfs/ 123 obj-$(CONFIG_GFS2_FS) += gfs2/ 123 obj-$(CONFIG_GFS2_FS) += gfs2/ 124 obj-$(CONFIG_F2FS_FS) += f2fs/ 124 obj-$(CONFIG_F2FS_FS) += f2fs/ 125 obj-$(CONFIG_BCACHEFS_FS) += bcachefs/ !! 125 obj-y += exofs/ # Multiple modules 126 obj-$(CONFIG_CEPH_FS) += ceph/ 126 obj-$(CONFIG_CEPH_FS) += ceph/ 127 obj-$(CONFIG_PSTORE) += pstore/ 127 obj-$(CONFIG_PSTORE) += pstore/ 128 obj-$(CONFIG_EFIVAR_FS) += efivarfs/ 128 obj-$(CONFIG_EFIVAR_FS) += efivarfs/ 129 obj-$(CONFIG_EROFS_FS) += erofs/ << 130 obj-$(CONFIG_VBOXSF_FS) += vboxsf/ << 131 obj-$(CONFIG_ZONEFS_FS) += zonefs/ << 132 obj-$(CONFIG_BPF_LSM) += bpf_fs_kfun <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.