The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #
    2 # Makefile for the Linux filesystems.
    3 #
    4 # 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
    5 # Rewritten to use lists instead of if-statements.
    6 # 
    7 
    8 obj-y :=        open.o read_write.o file_table.o super.o \
    9                 char_dev.o stat.o exec.o pipe.o namei.o fcntl.o \
   10                 ioctl.o readdir.o select.o fifo.o dcache.o inode.o \
   11                 attr.o bad_inode.o file.o filesystems.o namespace.o \
   12                 seq_file.o xattr.o libfs.o fs-writeback.o \
   13                 pnode.o drop_caches.o splice.o sync.o utimes.o \
   14                 stack.o fs_struct.o statfs.o
   15 
   16 ifeq ($(CONFIG_BLOCK),y)
   17 obj-y +=        buffer.o bio.o block_dev.o direct-io.o mpage.o ioprio.o
   18 else
   19 obj-y +=        no-block.o
   20 endif
   21 
   22 obj-$(CONFIG_PROC_FS) += proc_namespace.o
   23 
   24 obj-$(CONFIG_BLK_DEV_INTEGRITY) += bio-integrity.o
   25 obj-y                           += notify/
   26 obj-$(CONFIG_EPOLL)             += eventpoll.o
   27 obj-$(CONFIG_ANON_INODES)       += anon_inodes.o
   28 obj-$(CONFIG_SIGNALFD)          += signalfd.o
   29 obj-$(CONFIG_TIMERFD)           += timerfd.o
   30 obj-$(CONFIG_EVENTFD)           += eventfd.o
   31 obj-$(CONFIG_AIO)               += aio.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
   36 obj-$(CONFIG_BINFMT_MISC)       += binfmt_misc.o
   37 
   38 # binfmt_script is always there
   39 obj-y                           += binfmt_script.o
   40 
   41 obj-$(CONFIG_BINFMT_ELF)        += binfmt_elf.o
   42 obj-$(CONFIG_COMPAT_BINFMT_ELF) += compat_binfmt_elf.o
   43 obj-$(CONFIG_BINFMT_ELF_FDPIC)  += binfmt_elf_fdpic.o
   44 obj-$(CONFIG_BINFMT_SOM)        += binfmt_som.o
   45 obj-$(CONFIG_BINFMT_FLAT)       += binfmt_flat.o
   46 
   47 obj-$(CONFIG_FS_MBCACHE)        += mbcache.o
   48 obj-$(CONFIG_FS_POSIX_ACL)      += posix_acl.o xattr_acl.o
   49 obj-$(CONFIG_NFS_COMMON)        += nfs_common/
   50 obj-$(CONFIG_GENERIC_ACL)       += generic_acl.o
   51 obj-$(CONFIG_COREDUMP)          += coredump.o
   52 
   53 obj-$(CONFIG_FHANDLE)           += fhandle.o
   54 
   55 obj-y                           += quota/
   56 
   57 obj-$(CONFIG_PROC_FS)           += proc/
   58 obj-$(CONFIG_SYSFS)             += sysfs/
   59 obj-$(CONFIG_CONFIGFS_FS)       += configfs/
   60 obj-y                           += devpts/
   61 
   62 obj-$(CONFIG_PROFILING)         += dcookies.o
   63 obj-$(CONFIG_DLM)               += dlm/
   64  
   65 # Do not add any filesystems before this line
   66 obj-$(CONFIG_FSCACHE)           += fscache/
   67 obj-$(CONFIG_REISERFS_FS)       += reiserfs/
   68 obj-$(CONFIG_EXT3_FS)           += ext3/ # Before ext2 so root fs can be ext3
   69 obj-$(CONFIG_EXT2_FS)           += ext2/
   70 # We place ext4 after ext2 so plain ext2 root fs's are mounted using ext2
   71 # unless explicitly requested by rootfstype
   72 obj-$(CONFIG_EXT4_FS)           += ext4/
   73 obj-$(CONFIG_JBD)               += jbd/
   74 obj-$(CONFIG_JBD2)              += jbd2/
   75 obj-$(CONFIG_CRAMFS)            += cramfs/
   76 obj-$(CONFIG_SQUASHFS)          += squashfs/
   77 obj-y                           += ramfs/
   78 obj-$(CONFIG_HUGETLBFS)         += hugetlbfs/
   79 obj-$(CONFIG_CODA_FS)           += coda/
   80 obj-$(CONFIG_MINIX_FS)          += minix/
   81 obj-$(CONFIG_FAT_FS)            += fat/
   82 obj-$(CONFIG_BFS_FS)            += bfs/
   83 obj-$(CONFIG_ISO9660_FS)        += isofs/
   84 obj-$(CONFIG_HFSPLUS_FS)        += hfsplus/ # Before hfs to find wrapped HFS+
   85 obj-$(CONFIG_HFS_FS)            += hfs/
   86 obj-$(CONFIG_ECRYPT_FS)         += ecryptfs/
   87 obj-$(CONFIG_VXFS_FS)           += freevxfs/
   88 obj-$(CONFIG_NFS_FS)            += nfs/
   89 obj-$(CONFIG_EXPORTFS)          += exportfs/
   90 obj-$(CONFIG_NFSD)              += nfsd/
   91 obj-$(CONFIG_LOCKD)             += lockd/
   92 obj-$(CONFIG_NLS)               += nls/
   93 obj-$(CONFIG_SYSV_FS)           += sysv/
   94 obj-$(CONFIG_CIFS)              += cifs/
   95 obj-$(CONFIG_NCP_FS)            += ncpfs/
   96 obj-$(CONFIG_HPFS_FS)           += hpfs/
   97 obj-$(CONFIG_NTFS_FS)           += ntfs/
   98 obj-$(CONFIG_UFS_FS)            += ufs/
   99 obj-$(CONFIG_EFS_FS)            += efs/
  100 obj-$(CONFIG_JFFS2_FS)          += jffs2/
  101 obj-$(CONFIG_LOGFS)             += logfs/
  102 obj-$(CONFIG_UBIFS_FS)          += ubifs/
  103 obj-$(CONFIG_AFFS_FS)           += affs/
  104 obj-$(CONFIG_ROMFS_FS)          += romfs/
  105 obj-$(CONFIG_QNX4FS_FS)         += qnx4/
  106 obj-$(CONFIG_QNX6FS_FS)         += qnx6/
  107 obj-$(CONFIG_AUTOFS4_FS)        += autofs4/
  108 obj-$(CONFIG_ADFS_FS)           += adfs/
  109 obj-$(CONFIG_FUSE_FS)           += fuse/
  110 obj-$(CONFIG_UDF_FS)            += udf/
  111 obj-$(CONFIG_SUN_OPENPROMFS)    += openpromfs/
  112 obj-$(CONFIG_OMFS_FS)           += omfs/
  113 obj-$(CONFIG_JFS_FS)            += jfs/
  114 obj-$(CONFIG_XFS_FS)            += xfs/
  115 obj-$(CONFIG_9P_FS)             += 9p/
  116 obj-$(CONFIG_AFS_FS)            += afs/
  117 obj-$(CONFIG_NILFS2_FS)         += nilfs2/
  118 obj-$(CONFIG_BEFS_FS)           += befs/
  119 obj-$(CONFIG_HOSTFS)            += hostfs/
  120 obj-$(CONFIG_HPPFS)             += hppfs/
  121 obj-$(CONFIG_CACHEFILES)        += cachefiles/
  122 obj-$(CONFIG_DEBUG_FS)          += debugfs/
  123 obj-$(CONFIG_OCFS2_FS)          += ocfs2/
  124 obj-$(CONFIG_BTRFS_FS)          += btrfs/
  125 obj-$(CONFIG_GFS2_FS)           += gfs2/
  126 obj-$(CONFIG_F2FS_FS)           += f2fs/
  127 obj-y                           += exofs/ # Multiple modules
  128 obj-$(CONFIG_CEPH_FS)           += ceph/
  129 obj-$(CONFIG_PSTORE)            += pstore/

Cache object: 73348efff6bac6715a62c5a9df99ea1e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.