aboutsummaryrefslogtreecommitdiff
path: root/networking/tftp.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/tftp.c')
-rw-r--r--networking/tftp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/networking/tftp.c b/networking/tftp.c
index 947e65169..5baa80448 100644
--- a/networking/tftp.c
+++ b/networking/tftp.c
@@ -22,15 +22,20 @@
22//config: bool "tftp (12 kb)" 22//config: bool "tftp (12 kb)"
23//config: default y 23//config: default y
24//config: help 24//config: help
25//config: This enables the Trivial File Transfer Protocol client program. TFTP 25//config: Trivial File Transfer Protocol client. TFTP is usually used
26//config: is usually used for simple, small transfers such as a root image 26//config: for simple, small transfers such as a root image
27//config: for a network-enabled bootloader. 27//config: for a network-enabled bootloader.
28//config: 28//config:
29//config:config FEATURE_TFTP_PROGRESS_BAR
30//config: bool "Enable progress bar"
31//config: default y
32//config: depends on TFTP
33//config:
29//config:config TFTPD 34//config:config TFTPD
30//config: bool "tftpd (10 kb)" 35//config: bool "tftpd (10 kb)"
31//config: default y 36//config: default y
32//config: help 37//config: help
33//config: This enables the Trivial File Transfer Protocol server program. 38//config: Trivial File Transfer Protocol server.
34//config: It expects that stdin is a datagram socket and a packet 39//config: It expects that stdin is a datagram socket and a packet
35//config: is already pending on it. It will exit after one transfer. 40//config: is already pending on it. It will exit after one transfer.
36//config: In other words: it should be run from inetd in nowait mode, 41//config: In other words: it should be run from inetd in nowait mode,
@@ -68,11 +73,6 @@
68//config: Allow tftp to specify block size, and tftpd to understand 73//config: Allow tftp to specify block size, and tftpd to understand
69//config: "blksize" and "tsize" options. 74//config: "blksize" and "tsize" options.
70//config: 75//config:
71//config:config FEATURE_TFTP_PROGRESS_BAR
72//config: bool "Enable progress bar"
73//config: default y
74//config: depends on TFTP && FEATURE_TFTP_BLOCKSIZE
75//config:
76//config:config TFTP_DEBUG 76//config:config TFTP_DEBUG
77//config: bool "Enable debug" 77//config: bool "Enable debug"
78//config: default n 78//config: default n