fs/binfs/README.txt: Add a README file

This commit is contained in:
Gregory Nutt 2013-11-13 16:40:03 -06:00
parent 7f9a982416
commit 015072a4d4
5 changed files with 36 additions and 1 deletions

View File

@ -6041,4 +6041,5 @@
* arch/arm/src/sama5/sam_ssc.c: I2S loopback test finally works * arch/arm/src/sama5/sam_ssc.c: I2S loopback test finally works
(2013-11-11). (2013-11-11).
* fs/procfs: Add a little, primitive procfs file system. (2013-11-13). * fs/procfs: Add a little, primitive procfs file system. (2013-11-13).
* fs/binfs/README.txt: Add a README file for binfs (2013-11-13).

View File

@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4"> <tr align="center" bgcolor="#e4e4e4">
<td> <td>
<h1><big><font color="#3c34ec"><i>NuttX README Files</i></font></big></h1> <h1><big><font color="#3c34ec"><i>NuttX README Files</i></font></big></h1>
<p>Last Updated: November 7, 2013</p> <p>Last Updated: November 13, 2013</p>
</td> </td>
</tr> </tr>
</table> </table>
@ -231,6 +231,8 @@
| | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/drivers/syslog/README.txt">README.txt</a> | | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/drivers/syslog/README.txt">README.txt</a>
| | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/drivers/README.txt"><b><i>README.txt</i></b></a> | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/drivers/README.txt"><b><i>README.txt</i></b></a>
| |- fs/ | |- fs/
| | |- binfs/
| | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/fs/binfs/README.txt"><b><i>README.txt</i></b></a>
| | |- mmap/ | | |- mmap/
| | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/fs/mmap/README.txt"><b><i>README.txt</i></b></a> | | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/fs/mmap/README.txt"><b><i>README.txt</i></b></a>
| | |- nxffs/ | | |- nxffs/

View File

@ -1159,6 +1159,8 @@ nuttx
| | `- README.txt | | `- README.txt
| `- README.txt | `- README.txt
|- fs/ |- fs/
| |- binfs/
| | `- README.txt
| |- mmap/ | |- mmap/
| | `- README.txt | | `- README.txt
| |- nxffs/ | |- nxffs/

29
fs/binfs/README.txt Executable file
View File

@ -0,0 +1,29 @@
fs/binfs README
================
This is the binfs file system that allows "fake" execution of NSH built-
in applications via the file system. The binfs fs file system can be
built into the system by enabling:
CONFIG_BUILTIN=y
CONFIG_FS_BINFS=y
It can then be mounted from the NSH command like like:
mount -t binfs /bin
Example
=======
NuttShell (NSH) NuttX-6.31
nsh> hello
nsh: hello: command not found
nsh> mount -t binfs /bin
nsh> ls /bin
ls /bin
/bin:
hello
nsh> /bin/hello
Hello, World!!

View File

@ -46,5 +46,6 @@ Example
0/ 0/
1/ 1/
2/ 2/
nsh> cat /proc/2/cmdline nsh> cat /proc/2/cmdline
<pthread> 0x527420 <pthread> 0x527420