9
0
Fork 0

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>
This commit is contained in:
Robert Schwebel 2016-02-10 11:07:35 +01:00 committed by Sascha Hauer
parent fb985f2055
commit 597fda36d4
1 changed files with 9 additions and 5 deletions

View File

@ -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>`.