Add to losetup example
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1254 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
4d24e3c482
commit
972ab74f1a
|
@ -954,7 +954,10 @@ losetup [-o <offset>] [-r] <dev-path> <file-path>
|
|||
<p>
|
||||
<b>Synopsis</b>.
|
||||
Setup the loop device at <dev-path> to access the file at <file-path> as a block device.
|
||||
Example:
|
||||
In the following example a 256Kb file is created (<code>dd</code>) and <code>losetup</code> is
|
||||
used to make the file accessible as a block device.
|
||||
A FAT file system is created (<code>mkfatfs</code>) and mounted (<code>mount</code>).
|
||||
Files can then be managed on the loop-mounted file.
|
||||
<ul><pre>
|
||||
nsh> dd if=/dev/zero of=/tmp/image bs=512 count=512
|
||||
nsh> ls -l /tmp
|
||||
|
@ -970,6 +973,13 @@ nsh> ls -l /mnt
|
|||
ls -l /mnt
|
||||
/mnt:
|
||||
drw-rw-rw- 0 example/
|
||||
nsh> echo "This is a test" >/mnt/example/atest.txt
|
||||
nsh> ls -l /mnt/example
|
||||
/mnt/example:
|
||||
-rw-rw-rw- 16 ATEST.TXT
|
||||
nsh> cat /mnt/example/atest.txt
|
||||
This is a test
|
||||
nsh>
|
||||
</pre></ul>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -357,6 +357,13 @@ o losetup [-d <dev-path>] | [[-o <offset>] [-r] <ldev-path> <file-path>]
|
|||
ls -l /mnt
|
||||
/mnt:
|
||||
drw-rw-rw- 0 example/
|
||||
nsh> echo "This is a test" >/mnt/example/atest.txt
|
||||
nsh> ls -l /mnt/example
|
||||
/mnt/example:
|
||||
-rw-rw-rw- 16 ATEST.TXT
|
||||
nsh> cat /mnt/example/atest.txt
|
||||
This is a test
|
||||
nsh>
|
||||
|
||||
o ls [-lRs] <dir-path>
|
||||
|
||||
|
|
Loading…
Reference in New Issue