add avahi package
[15.05/openwrt.git] / package / openssh / Config.in
1 menu "openssh - A free implementation of the Secure Shell protocol"
2
3 config BR2_PACKAGE_OPENSSH
4         bool "OpenSSH - A free implementation of the Secure Shell protocol"
5         default y if CONFIG_DEVEL
6         help
7           OpenSSH is a FREE version of the SSH protocol suite of network 
8           connectivity tools that increasing numbers of people on the Internet 
9           are coming to rely on. Many users of telnet, rlogin, ftp, and other 
10           such programs might not realize that their password is transmitted 
11           across the Internet unencrypted, but it is. OpenSSH encrypts all 
12           traffic (including passwords) to effectively eliminate eavesdropping, 
13           connection hijacking, and other network-level attacks. Additionally, 
14           OpenSSH provides a myriad of secure tunneling capabilities, as well 
15           as a variety of authentication methods.
16           
17           http://www.openssh.com/
18           
19           Depends: openssl
20           
21
22 config BR2_PACKAGE_OPENSSH_CLIENT
23         tristate "openssh-client - OpenSSH client"
24         default m if CONFIG_DEVEL
25         depends BR2_PACKAGE_OPENSSH
26         select BR2_PACKAGE_LIBOPENSSL
27         select BR2_PACKAGE_ZLIB
28
29 config BR2_PACKAGE_OPENSSH_CLIENT_UTILS
30         tristate "openssh-client-utils - OpenSSH client utilities"
31         default m if CONFIG_DEVEL
32         depends BR2_PACKAGE_OPENSSH_CLIENT
33         select BR2_PACKAGE_ZLIB
34
35 config BR2_PACKAGE_OPENSSH_SERVER
36         tristate "openssh-server - OpenSSH server"
37         default m if CONFIG_DEVEL
38         depends BR2_PACKAGE_OPENSSH
39         select BR2_PACKAGE_LIBOPENSSL
40         select BR2_PACKAGE_ZLIB
41
42 config BR2_PACKAGE_OPENSSH_SFTP_CLIENT
43         tristate "openssh-sftp-client - OpenSSH SFTP client"
44         default m if CONFIG_DEVEL
45         depends BR2_PACKAGE_OPENSSH
46         select BR2_PACKAGE_LIBOPENSSL
47         select BR2_PACKAGE_ZLIB
48
49 config BR2_PACKAGE_OPENSSH_SFTP_SERVER
50         tristate "openssh-sftp-server - OpenSSH SFTP server"
51         default m if CONFIG_DEVEL
52         depends BR2_PACKAGE_OPENSSH
53         select BR2_PACKAGE_LIBOPENSSL
54         select BR2_PACKAGE_ZLIB
55
56 endmenu
57