diff options
author | Phillip Lougher <phillip@lougher.demon.co.uk> | 2010-05-16 22:17:04 -0400 |
---|---|---|
committer | Phillip Lougher <phillip@lougher.demon.co.uk> | 2010-05-17 14:54:06 -0400 |
commit | f41d207cbedecd82f797adcce83890aa96f1c9e9 (patch) | |
tree | 76322fb62237fe3f5ad65d3c4a74f825e9e016fe /fs/squashfs/Makefile | |
parent | 4b5397dc24ab12afaac85be3d0863b7f6eb8b0f0 (diff) |
squashfs: add support for xattr reading
Add support for listxattr and getxattr. Also add xattr definitions.
Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
Diffstat (limited to 'fs/squashfs/Makefile')
-rw-r--r-- | fs/squashfs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/Makefile b/fs/squashfs/Makefile index c0da4a189cc4..56684d464105 100644 --- a/fs/squashfs/Makefile +++ b/fs/squashfs/Makefile | |||
@@ -5,5 +5,5 @@ | |||
5 | obj-$(CONFIG_SQUASHFS) += squashfs.o | 5 | obj-$(CONFIG_SQUASHFS) += squashfs.o |
6 | squashfs-y += block.o cache.o dir.o export.o file.o fragment.o id.o inode.o | 6 | squashfs-y += block.o cache.o dir.o export.o file.o fragment.o id.o inode.o |
7 | squashfs-y += namei.o super.o symlink.o zlib_wrapper.o decompressor.o | 7 | squashfs-y += namei.o super.o symlink.o zlib_wrapper.o decompressor.o |
8 | squashfs-y += xattr_id.o | 8 | squashfs-y += xattr.o xattr_id.o |
9 | 9 | ||