fs/binfs/README.txt: Add a README file
This commit is contained in:
parent
7f9a982416
commit
015072a4d4
@ -6041,4 +6041,5 @@
|
||||
* arch/arm/src/sama5/sam_ssc.c: I2S loopback test finally works
|
||||
(2013-11-11).
|
||||
* 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).
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
<tr align="center" bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<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>
|
||||
</tr>
|
||||
</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/README.txt"><b><i>README.txt</i></b></a>
|
||||
| |- 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/
|
||||
| | | `- <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/fs/mmap/README.txt"><b><i>README.txt</i></b></a>
|
||||
| | |- nxffs/
|
||||
|
@ -1159,6 +1159,8 @@ nuttx
|
||||
| | `- README.txt
|
||||
| `- README.txt
|
||||
|- fs/
|
||||
| |- binfs/
|
||||
| | `- README.txt
|
||||
| |- mmap/
|
||||
| | `- README.txt
|
||||
| |- nxffs/
|
||||
|
29
fs/binfs/README.txt
Executable file
29
fs/binfs/README.txt
Executable 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!!
|
@ -46,5 +46,6 @@ Example
|
||||
0/
|
||||
1/
|
||||
2/
|
||||
|
||||
nsh> cat /proc/2/cmdline
|
||||
<pthread> 0x527420
|
||||
|
Loading…
Reference in New Issue
Block a user