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