summaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-06-28 06:22:39 -0400
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-02 07:50:50 +0200
commitfeacb774a8c9ff693dc90563b4d334eb25ed5be8 (patch)
treee7b4ee2222600d42635ba090a0f8ca53529686b2 /Documentation/filesystems
parentd12f62829e471912a9be3a58de187b574db780ec (diff)
downloadbarebox-feacb774a8c9ff693dc90563b4d334eb25ed5be8.tar.gz
barebox-feacb774a8c9ff693dc90563b4d334eb25ed5be8.tar.xz
Documentation: Minor editing changes to filesystems content.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/nfs.rst2
-rw-r--r--Documentation/filesystems/ramfs.rst8
-rw-r--r--Documentation/filesystems/tftp.rst4
3 files changed, 7 insertions, 7 deletions
diff --git a/Documentation/filesystems/nfs.rst b/Documentation/filesystems/nfs.rst
index b8ad4f3fe3..f4eda5d13c 100644
--- a/Documentation/filesystems/nfs.rst
+++ b/Documentation/filesystems/nfs.rst
@@ -5,7 +5,7 @@
NFS Support
===========
-barebox has readonly support for NFSv3 un UDP mode.
+barebox has readonly support for NFSv3 in UDP mode.
Example::
diff --git a/Documentation/filesystems/ramfs.rst b/Documentation/filesystems/ramfs.rst
index 70e7282f00..b7ece1a9d8 100644
--- a/Documentation/filesystems/ramfs.rst
+++ b/Documentation/filesystems/ramfs.rst
@@ -3,10 +3,10 @@
RAM filesystem
==============
-ramfs is a simple malloc based filesystem. An instance of ramfs is
-mounted during startup on /. The filesystem type passed to mount is
-'ramfs'
+ramfs is a simple malloc-based filesystem. An instance of ramfs is
+mounted during startup on /. The filesystem type passed to ``mount``
+is ``ramfs``.
-example::
+Example::
mount none ramfs /somedir
diff --git a/Documentation/filesystems/tftp.rst b/Documentation/filesystems/tftp.rst
index 273be5ee2a..e0a1159264 100644
--- a/Documentation/filesystems/tftp.rst
+++ b/Documentation/filesystems/tftp.rst
@@ -8,8 +8,8 @@ TFTP support
barebox has read/write support for the Trivial File Transfer Protocol.
TFTP is not designed as a filesystem. It does not have support for listing
-directories. This means a :ref:`command_ls` to a TFTP mounted path will show an empty
-directory. Nevertheless the files are there.
+directories. This means a :ref:`command_ls` to a TFTP-mounted path will show an empty
+directory. Nevertheless, the files are there.
Example::