Merge from vendor branch TNF:
[pkgsrcv2.git] / sysutils / fs-kit / DESCR
1 Welcome to the File System Construction Kit!  This is a software
2 package that accompanies the book, Practical File System Design, which
3 Dominic Giampaolo wrote and is published by Morgan Kaufmann (ISBN
4 1558604979).
5
6 This package is a very simple framework in which you can experiment
7 with a working (but simple) file system implementation.  The framework
8 is designed so that you can go in and modify one part of it, such as
9 how the used and free disk blocks are managed, and not have to touch
10 the rest of the file system.  And because the package creates its file
11 system inside of a normal file on your hard disk, you don't have to
12 have a spare disk or require special (root) privileges to run the
13 program.  The goal is that this package should provide a convenient
14 test bed for trying out new file system ideas without having to go
15 through the pain and difficulty of creating a real kernel based file
16 system.  The API is generic enough however that after an you debug
17 your implementation within this framework it could be moved to a real
18 kernel based file system for the BeOS or a Unix like operating system.