summaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2016-02-10 11:07:35 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2016-02-11 13:52:19 +0100
commit597fda36d488161fc4aff0125f3c1f53929560c6 (patch)
tree9620555c05c00487c25c3ae50c56d8600b9f38b0 /Documentation/filesystems
parentfb985f205599e06700f558a171bc9349b9e73384 (diff)
downloadbarebox-597fda36d488161fc4aff0125f3c1f53929560c6.tar.gz
barebox-597fda36d488161fc4aff0125f3c1f53929560c6.tar.xz
Documentation: filesystems: tftp: bring in line with other filesystem docs
Clarify that this is about the TFTP filesystem implementation, in contrast to the tftp command. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/tftp.rst14
1 files changed, 9 insertions, 5 deletions
diff --git a/Documentation/filesystems/tftp.rst b/Documentation/filesystems/tftp.rst
index e0a1159264..b5bb1b3121 100644
--- a/Documentation/filesystems/tftp.rst
+++ b/Documentation/filesystems/tftp.rst
@@ -2,15 +2,19 @@
.. _filesystems_tftp:
-TFTP support
-============
+TFTP filesystem
+===============
-barebox has read/write support for the Trivial File Transfer Protocol.
+barebox has read/write support for the Trivial File Transfer Protocol (TFTP,
+`RFC1350 <https://tools.ietf.org/html/rfc1350>`_).
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:`ls <command_ls>` to a TFTP-mounted path will
+show an empty directory. Nevertheless, the files are there.
Example::
mount -t tftp 192.168.23.4 /mnt/tftp
+
+In addition to the TFTP filesystem implementation, barebox does also have a
+:ref:`tftp command <command_tftp>`.