diff options
author | Shengyu Zhang <lastavengers@outlook.com> | 2016-05-13 09:18:59 +0800 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-01-06 20:36:08 +0100 |
commit | 6ebebc80de3dfc7ada3a69d609f00088c2143be3 (patch) | |
tree | 1a139f9dbb5930d0cfe1a0907d2c7d496e232cde /ext2fs/Makefile | |
parent | 7320df6815649ab13a93a1b4d889b1b53bc112d4 (diff) | |
download | hurd-6ebebc80de3dfc7ada3a69d609f00088c2143be3.tar.gz hurd-6ebebc80de3dfc7ada3a69d609f00088c2143be3.tar.bz2 hurd-6ebebc80de3dfc7ada3a69d609f00088c2143be3.zip |
ext2fs: Add support for xattr
* ext2fs/Makefile (SRCS): Add xattr.c.
* ext2fs/ext2_fs.h: Define EXT2_FEATURE_COMPAT_EXT_ATTR.
* ext2fs/ext2fs.h: Add xattr functions.
* ext2fs/ialloc.c (diskfs_free_node): Free xattr block.
* ext2fs/xattr.c: xattr implement.
* ext2fs/xattr.h: Likewise.
Diffstat (limited to 'ext2fs/Makefile')
-rw-r--r-- | ext2fs/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext2fs/Makefile b/ext2fs/Makefile index 88f8f465..0c2f4a24 100644 --- a/ext2fs/Makefile +++ b/ext2fs/Makefile @@ -21,7 +21,8 @@ makemode := server target = ext2fs SRCS = balloc.c dir.c ext2fs.c getblk.c hyper.c ialloc.c \ - inode.c pager.c pokel.c truncate.c storeinfo.c msg.c xinl.c + inode.c pager.c pokel.c truncate.c storeinfo.c msg.c xinl.c \ + xattr.c OBJS = $(SRCS:.c=.o) HURDLIBS = diskfs pager iohelp fshelp store ports ihash shouldbeinlibc LDLIBS = -lpthread $(and $(HAVE_LIBBZ2),-lbz2) $(and $(HAVE_LIBZ),-lz) |