diff options
author | Nathan Scott <nathans@sgi.com> | 2002-03-11 23:42:35 +0000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2002-03-11 23:42:35 +0000 |
commit | 84233d472fbea2750199c9785a3b28a079551905 (patch) | |
tree | 57b9f873ecab86d2ea58d1f06a562d2ed5ae3b9e /man/man5 | |
parent | 659175e0055fff18ebf5505ab1963dd00b8316a8 (diff) | |
download | attr-84233d472fbea2750199c9785a3b28a079551905.tar.gz |
man page and test script updates from Andreas. fix syscall numbering
a/ on sparc (fremovexattr was wrong) and b/ if arch doesn't have numbers
defined yet, handle it cleanly (errno.h missing).
Diffstat (limited to 'man/man5')
-rw-r--r-- | man/man5/Makefile | 11 | ||||
-rw-r--r-- | man/man5/attr.5 | 5 |
2 files changed, 11 insertions, 5 deletions
diff --git a/man/man5/Makefile b/man/man5/Makefile index cdda319..f92d130 100644 --- a/man/man5/Makefile +++ b/man/man5/Makefile @@ -38,6 +38,7 @@ MAN_SECTION = 5 MAN_PAGES = $(shell echo *.$(MAN_SECTION)) MAN_DEST = $(PKG_MAN_DIR)/man$(MAN_SECTION) LSRCFILES = $(MAN_PAGES) +LDIRT = $(MAN_PAGES:%=%.ps) $(MAN_PAGES:%=%.html) default : $(MAN_PAGES) @@ -47,3 +48,13 @@ install : default $(INSTALL) -m 755 -d $(MAN_DEST) $(INSTALL_MAN) install-dev install-lib: + +html : $(MAN_PAGES:%=%.html) +ps : $(MAN_PAGES:%=%.ps) + +%.$(MAN_SECTION).ps : %.$(MAN_SECTION) + groff -man -T ps $< > $@ + +%.$(MAN_SECTION).html : %.$(MAN_SECTION) + groff -man -T html $< > $@ + diff --git a/man/man5/attr.5 b/man/man5/attr.5 index e9ef83e..501addb 100644 --- a/man/man5/attr.5 +++ b/man/man5/attr.5 @@ -85,16 +85,11 @@ In the current ext2 and ext3 filesystem implementations, all extended attributes must fit on a single filesystem block (1024, 2048 or 4096 bytes, depending on the block size specified when the filesystem was created). This limit may be removed in a future version. -Device special files cannot be associated with extended user attributes -(but they may be associated with extended system attributes). Permissions -of device special files define access to the devices rather than to the -device special files. .PP In the XFS filesystem implementation, there is no practical limit on the number of extended attributes associated with a file, and the algorithms used to store extended attribute information on disk are scalable (stored either inline in the inode, as an extent, or in a B+ tree). -XFS allows extended attributes to be associated with device inodes. .SH ADDITIONAL NOTES Since the filesystems on which extended attributes are stored might also be used on architectures with a different byte order and machine word |