hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
config BR2_PACKAGE_LFTP
   bool "lftp"
   depends on BR2_USE_WCHAR
   depends on BR2_INSTALL_LIBSTDCPP
   depends on BR2_USE_MMU # fork()
   select BR2_PACKAGE_READLINE
   select BR2_PACKAGE_ZLIB
   select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS
   help
     LFTP is a sophisticated ftp/http client, and a file transfer
     program supporting a number of network protocols. Like BASH,
     it has job control and uses the readline library for input. It
     has bookmarks, a built-in mirror command, and can transfer
     several files in parallel.
     It was designed with reliability in mind.
 
     http://lftp.yar.ru/
 
if BR2_PACKAGE_LFTP
 
comment "Commands"
 
config BR2_PACKAGE_LFTP_CMD_MIRROR
   bool "Mirror command"
   default y
   help
     Enable mirror command
 
config BR2_PACKAGE_LFTP_CMD_SLEEP
   bool "Sleep command"
   default y
   help
     Enable sleep command
 
config BR2_PACKAGE_LFTP_CMD_TORRENT
   bool "Torrent command"
   help
     Enable torrent command
 
comment "Protocols"
 
config BR2_PACKAGE_LFTP_PROTO_FISH
   bool "FISH protocol"
   help
     Enable FISH protocol
 
config BR2_PACKAGE_LFTP_PROTO_FTP
   bool "FTP protocol"
   default y
   help
     Enable FTP protocol
 
config BR2_PACKAGE_LFTP_PROTO_HTTP
   bool "HTTP protocol"
   help
     Enable HTTP protocol
 
config BR2_PACKAGE_LFTP_PROTO_SFTP
   bool "SFTP protocol"
   help
     Enable SFTP protocol
 
endif  # BR2_PACKAGE_LFTP
 
comment "lftp requires a toolchain w/ C++, wchar"
   depends on BR2_USE_MMU
   depends on !(BR2_USE_WCHAR && BR2_INSTALL_LIBSTDCPP)