Skip to content

Commit

Permalink
Updte a README file
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory-nutt committed Jun 12, 2015
1 parent 86dfb3d commit a25ad14
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fs/mount/fs_mount.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ int mount(FAR const char *source, FAR const char *target,

if (INODE_IS_SPECIAL(mountpt_inode))
{
fdbg("ERROR: target %s exists and is a special nodes\n", target);
fdbg("ERROR: target %s exists and is a special nodes\n", target);
errcode = -ENOTDIR;
goto errout_with_semaphore;
}
Expand Down
14 changes: 14 additions & 0 deletions fs/unionfs/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ fs/unionfs/README.txt
with a writable file system (like a RAM disk). This should then give
to a readable/write-able file system with some fixed content.

Prefixes
--------

And optional prefix may be provided with each of the file systems
combined in by the Union File System. For example, suppose that:

o File system 1 is a ROMFS file system with prefix == NULL,
o File system 2 is a BINFS file system with prefix == "cgin-bin", and
o The union file system is mounted at /mnt/www.

Then the content in the in the ROMFS file system would appear at
/mnt/www and the content of the BINFS file system would appear at
/mnt/www/cgi-gin.

Example Configurations
----------------------

Expand Down

0 comments on commit a25ad14

Please sign in to comment.