mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:14:22 +08:00
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:
@@ -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 <server-address> <mount-point> <remote-path>
|
|||||||
</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 <server-address> <mount-point> <remote-path>
|
|||||||
The <code><mount-point ></code> is the location in the NuttX pseudo filesystem where the mounted volume will appear.
|
The <code><mount-point ></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><remote-path></code> is the file system <code>/</code> directory being exported from server.
|
The <code><remote-path></code> is the file system <code>/</code> directory being exported from server.
|
||||||
|
|||||||
@@ -1400,7 +1400,7 @@ mkfifo <path>
|
|||||||
<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><path></code>.
|
whatever pseudo directories that may be needed to complete the <code><path></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 <fstype> <block-device> <code><dir-path></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 <fstype> <block-device> <code><dir-path></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>
|
||||||
|
|||||||
Reference in New Issue
Block a user