I learned how to spell PSEUDO

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5010 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-08-05 17:44:11 +00:00
parent 903b781d85
commit 93f38f3f61
2 changed files with 391 additions and 391 deletions
+5 -5
View File
@@ -84,7 +84,7 @@
<code>CONFIG_NFILE_DESCRIPTORS > 0</code>. You must include support for file descriptors. <code>CONFIG_NFILE_DESCRIPTORS > 0</code>. You must include support for file descriptors.
</li> </li>
<li> <li>
<code>CONFIG_DISABLE_MOUNTPOINT=n</code>. You must include support for mount points in the psuedo-file system. <code>CONFIG_DISABLE_MOUNTPOINT=n</code>. You must include support for mount points in the pseudo-file system.
</li> </li>
</ul> </ul>
<li> <li>
@@ -123,8 +123,8 @@ int mount(const char *source, const char *target, const char *filesystemtype, un
<p> <p>
<b>Input Paramters</b>: <b>Input Paramters</b>:
<ul> <ul>
<li><code>source</code>. A null-terminated string providing the fill path to a block driver in the NuttX psuedo-file system. <li><code>source</code>. A null-terminated string providing the fill path to a block driver in the NuttX pseudo-file system.
<li><code>target</code>. The location in the NuttX psuedo-file system where the volume will be mounted. <li><code>target</code>. The location in the NuttX pseudo-file system where the volume will be mounted.
<li><code>filesystemtype</code>. A string identifying the type of file system to use. <li><code>filesystemtype</code>. A string identifying the type of file system to use.
<li><code>mountflags</code>. Various flags that can be used to qualify how the file system is mounted. <li><code>mountflags</code>. Various flags that can be used to qualify how the file system is mounted.
<li><code>data</code>. Opaque data that is passed to the file system with the mount occurs. <li><code>data</code>. Opaque data that is passed to the file system with the mount occurs.
@@ -220,7 +220,7 @@ nfsmount &lt;server-address&gt; &lt;mount-point&gt; &lt;remote-path&gt;
</pre></ul> </pre></ul>
<p> <p>
<b>Synopsis</b>. <b>Synopsis</b>.
The <code>nfsmount</code> command mounts a network file system in the NuttX psuedo filesystem. The <code>nfsmount</code> command mounts a network file system in the NuttX pseudo filesystem.
The <code>nfsmount</code> will use NFSv3 UDP protocol to mount the remote file system. The <code>nfsmount</code> will use NFSv3 UDP protocol to mount the remote file system.
</p> </p>
<p> <p>
@@ -236,7 +236,7 @@ nfsmount &lt;server-address&gt; &lt;mount-point&gt; &lt;remote-path&gt;
The <code>&lt;mount-point &gt;</code> is the location in the NuttX pseudo filesystem where the mounted volume will appear. The <code>&lt;mount-point &gt;</code> is the location in the NuttX pseudo filesystem where the mounted volume will appear.
This mount point can only reside in the NuttX pseudo filesystem. This mount point can only reside in the NuttX pseudo filesystem.
By convention, this mount point is a subdirectory under <code>/mnt</code>. By convention, this mount point is a subdirectory under <code>/mnt</code>.
The mount command will create whatever psuedo directories that may be needed to complete the full path (but the full path must not already exist). The mount command will create whatever pseudo directories that may be needed to complete the full path (but the full path must not already exist).
</li> </li>
<li> <li>
The <code>&lt;remote-path&gt;</code> is the file system <code>/</code> directory being exported from server. The <code>&lt;remote-path&gt;</code> is the file system <code>/</code> directory being exported from server.
+3 -3
View File
@@ -1400,7 +1400,7 @@ mkfifo &lt;path&gt;
<p> <p>
<b>Synopsis</b>. <b>Synopsis</b>.
Creates a FIFO character device anywhere in the pseudo file system, creating Creates a FIFO character device anywhere in the pseudo file system, creating
whatever psuedo directories that may be needed to complete the <code>&lt;path&gt;</code>. whatever pseudo directories that may be needed to complete the <code>&lt;path&gt;</code>.
By convention, however, device drivers are place in the standard <code>/dev</code> directory. By convention, however, device drivers are place in the standard <code>/dev</code> directory.
After it is created, the FIFO device may be used as any other device driver. After it is created, the FIFO device may be used as any other device driver.
NSH provides this command to access the <a href="NuttxUserGuide.html#mkfifo"><code>mkfifo()</code></a> NuttX API. NSH provides this command to access the <a href="NuttxUserGuide.html#mkfifo"><code>mkfifo()</code></a> NuttX API.
@@ -1492,7 +1492,7 @@ mount -t &lt;fstype&gt; &lt;block-device&gt; <code>&lt;dir-path&gt;</code>
If no paramters are provided on the command line after the <code>mount</code> command, then the <code>mount</code> command will enumerate all of the current mountpoints on the console. If no paramters are provided on the command line after the <code>mount</code> command, then the <code>mount</code> command will enumerate all of the current mountpoints on the console.
</p> </p>
<p> <p>
If the mount parameters are provied on the command after the <code>mount</code> command, then the <code>mount</code> command will mount a file system in the NuttX psuedo-file system. If the mount parameters are provied on the command after the <code>mount</code> command, then the <code>mount</code> command will mount a file system in the NuttX pseudo-file system.
<code>mount</code>' performs a three way association, binding: <code>mount</code>' performs a three way association, binding:
</p> </p>
<ol> <ol>
@@ -1513,7 +1513,7 @@ mount -t &lt;fstype&gt; &lt;block-device&gt; <code>&lt;dir-path&gt;</code>
<a href="NuttxUserGuide.html#FileSystemOverview"><i>pseudo</i> filesystem</a> where the mounted volume will appear. <a href="NuttxUserGuide.html#FileSystemOverview"><i>pseudo</i> filesystem</a> where the mounted volume will appear.
This mount point can only reside in the NuttX <a href="NuttxUserGuide.html#FileSystemOverview"><i>pseudo</i> filesystem</a>. This mount point can only reside in the NuttX <a href="NuttxUserGuide.html#FileSystemOverview"><i>pseudo</i> filesystem</a>.
By convention, this mount point is a subdirectory under <code>/mnt</code>. By convention, this mount point is a subdirectory under <code>/mnt</code>.
The mount command will create whatever psuedo directories that may be needed to complete the The mount command will create whatever pseudo directories that may be needed to complete the
full path but the full path must not already exist. full path but the full path must not already exist.
</li> </li>
</ol> </ol>