summaryrefslogtreecommitdiffstats
path: root/package/openssh
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-05 02:16:36 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-05 02:16:36 +0000
commit7bd944d2153b871aaaee970811f27772cbe36a6f (patch)
tree023aa6c89150198db369868cca93b44e19180e28 /package/openssh
parent7a551def223e31d0fa5669eea9ff8d86098f9ca3 (diff)
reorganize/rationalize/format package menuconfig,
make updatedd modular git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2333 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssh')
-rw-r--r--package/openssh/Config.in102
1 files changed, 81 insertions, 21 deletions
diff --git a/package/openssh/Config.in b/package/openssh/Config.in
index 4e902adb4..6b344f897 100644
--- a/package/openssh/Config.in
+++ b/package/openssh/Config.in
@@ -1,8 +1,17 @@
-menu "openssh - A free implementation of the Secure Shell protocol"
+menu "openssh........................... A free implementation of the Secure Shell protocol"
-config BR2_PACKAGE_OPENSSH
- bool "OpenSSH - A free implementation of the Secure Shell protocol"
- default y if CONFIG_DEVEL
+config BR2_COMPILE_OPENSSH
+ bool
+ default n
+ depends BR2_PACKAGE_OPENSSH_CLIENT || BR2_PACKAGE_OPENSSH_SERVER || BR2_PACKAGE_OPENSSH_SFTP_CLIENT || BR2_PACKAGE_OPENSSH_SFTP_SERVER
+
+config BR2_PACKAGE_OPENSSH_CLIENT
+ prompt "openssh-client.................... OpenSSH client"
+ tristate
+ default m if CONFIG_DEVEL
+ select BR2_COMPILE_OPENSSH
+ select BR2_PACKAGE_LIBOPENSSL
+ select BR2_PACKAGE_ZLIB
help
OpenSSH is a FREE version of the SSH protocol suite of network
connectivity tools that increasing numbers of people on the Internet
@@ -17,41 +26,92 @@ config BR2_PACKAGE_OPENSSH
http://www.openssh.com/
Depends: openssl
-
-
-config BR2_PACKAGE_OPENSSH_CLIENT
- tristate "openssh-client - OpenSSH client"
- default m if CONFIG_DEVEL
- depends BR2_PACKAGE_OPENSSH
- select BR2_PACKAGE_LIBOPENSSL
- select BR2_PACKAGE_ZLIB
config BR2_PACKAGE_OPENSSH_CLIENT_UTILS
- tristate "openssh-client-utils - OpenSSH client utilities"
+ prompt "openssh-client-utils............ OpenSSH client utilities"
+ tristate
default m if CONFIG_DEVEL
depends BR2_PACKAGE_OPENSSH_CLIENT
- select BR2_PACKAGE_ZLIB
+ help
+ OpenSSH is a FREE version of the SSH protocol suite of network
+ connectivity tools that increasing numbers of people on the Internet
+ are coming to rely on. Many users of telnet, rlogin, ftp, and other
+ such programs might not realize that their password is transmitted
+ across the Internet unencrypted, but it is. OpenSSH encrypts all
+ traffic (including passwords) to effectively eliminate eavesdropping,
+ connection hijacking, and other network-level attacks. Additionally,
+ OpenSSH provides a myriad of secure tunneling capabilities, as well
+ as a variety of authentication methods.
+
+ http://www.openssh.com/
+
+ Depends: openssl
config BR2_PACKAGE_OPENSSH_SERVER
- tristate "openssh-server - OpenSSH server"
+ prompt "openssh-server.................... OpenSSH server"
+ tristate
default m if CONFIG_DEVEL
- depends BR2_PACKAGE_OPENSSH
+ select BR2_COMPILE_OPENSSH
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_ZLIB
+ help
+ OpenSSH is a FREE version of the SSH protocol suite of network
+ connectivity tools that increasing numbers of people on the Internet
+ are coming to rely on. Many users of telnet, rlogin, ftp, and other
+ such programs might not realize that their password is transmitted
+ across the Internet unencrypted, but it is. OpenSSH encrypts all
+ traffic (including passwords) to effectively eliminate eavesdropping,
+ connection hijacking, and other network-level attacks. Additionally,
+ OpenSSH provides a myriad of secure tunneling capabilities, as well
+ as a variety of authentication methods.
+
+ http://www.openssh.com/
+
+ Depends: openssl
config BR2_PACKAGE_OPENSSH_SFTP_CLIENT
- tristate "openssh-sftp-client - OpenSSH SFTP client"
+ prompt "openssh-sftp-client............... OpenSSH SFTP client"
+ tristate
default m if CONFIG_DEVEL
- depends BR2_PACKAGE_OPENSSH
+ select BR2_COMPILE_OPENSSH
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_ZLIB
+ help
+ OpenSSH is a FREE version of the SSH protocol suite of network
+ connectivity tools that increasing numbers of people on the Internet
+ are coming to rely on. Many users of telnet, rlogin, ftp, and other
+ such programs might not realize that their password is transmitted
+ across the Internet unencrypted, but it is. OpenSSH encrypts all
+ traffic (including passwords) to effectively eliminate eavesdropping,
+ connection hijacking, and other network-level attacks. Additionally,
+ OpenSSH provides a myriad of secure tunneling capabilities, as well
+ as a variety of authentication methods.
+
+ http://www.openssh.com/
+
+ Depends: openssl
+
config BR2_PACKAGE_OPENSSH_SFTP_SERVER
- tristate "openssh-sftp-server - OpenSSH SFTP server"
+ prompt "openssh-sftp-server............... OpenSSH SFTP server"
+ tristate
default m if CONFIG_DEVEL
- depends BR2_PACKAGE_OPENSSH
+ select BR2_COMPILE_OPENSSH
select BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_ZLIB
+ help
+ OpenSSH is a FREE version of the SSH protocol suite of network
+ connectivity tools that increasing numbers of people on the Internet
+ are coming to rely on. Many users of telnet, rlogin, ftp, and other
+ such programs might not realize that their password is transmitted
+ across the Internet unencrypted, but it is. OpenSSH encrypts all
+ traffic (including passwords) to effectively eliminate eavesdropping,
+ connection hijacking, and other network-level attacks. Additionally,
+ OpenSSH provides a myriad of secure tunneling capabilities, as well
+ as a variety of authentication methods.
+
+ http://www.openssh.com/
+
+ Depends: openssl
endmenu
-