mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
ac27a0ec11
Start of the ext4 patch series. See Documentation/filesystems/ext4.txt for details. This is a simple copy of the files in fs/ext3 to fs/ext4 and /usr/incude/linux/ext3* to /usr/include/ex4* Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
13 lines
377 B
Makefile
13 lines
377 B
Makefile
#
|
|
# Makefile for the linux ext3-filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_EXT3_FS) += ext3.o
|
|
|
|
ext3-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \
|
|
ioctl.o namei.o super.o symlink.o hash.o resize.o
|
|
|
|
ext3-$(CONFIG_EXT3_FS_XATTR) += xattr.o xattr_user.o xattr_trusted.o
|
|
ext3-$(CONFIG_EXT3_FS_POSIX_ACL) += acl.o
|
|
ext3-$(CONFIG_EXT3_FS_SECURITY) += xattr_security.o
|