Config.in 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. config ADK_COMPILE_OPENSSH
  2. prompt "openssh........................... OpenSSH software"
  3. bool
  4. default n
  5. config ADK_COMPILE_OPENSSH_WITH_KERBEROS
  6. prompt "Enable Kerberos support"
  7. bool
  8. depends on ADK_COMPILE_OPENSSH
  9. choice
  10. prompt "Kerberos implementation"
  11. depends on ADK_COMPILE_OPENSSH_WITH_KERBEROS
  12. config ADK_COMPILE_OPENSSH_WITH_KRB5
  13. prompt "MIT"
  14. bool
  15. select ADK_PACKAGE_KRB5_LIBS
  16. help
  17. Use MIT kerberos libraries.
  18. config ADK_COMPILE_OPENSSH_WITH_HEIMDAL
  19. prompt "Heimdal"
  20. bool
  21. select ADK_COMPILE_HEIMDAL
  22. select ADK_PACKAGE_HEIMDAL_LIBS
  23. help
  24. Use heimdal kerberos libraries.
  25. endchoice
  26. config ADK_PACKAGE_OPENSSH_CLIENT
  27. prompt "openssh-client.................... OpenSSH clients"
  28. tristate
  29. default n
  30. select ADK_PACKAGE_LIBOPENSSL
  31. select ADK_PACKAGE_ZLIB
  32. depends on ADK_COMPILE_OPENSSH
  33. help
  34. OpenSSH is a FREE version of the SSH protocol suite of network
  35. connectivity tools that increasing numbers of people on the Internet
  36. are coming to rely on. Many users of telnet, rlogin, ftp, and other
  37. such programs might not realize that their password is transmitted
  38. across the Internet unencrypted, but it is. OpenSSH encrypts all
  39. traffic (including passwords) to effectively eliminate eavesdropping,
  40. connection hijacking, and other network-level attacks. Additionally,
  41. OpenSSH provides a myriad of secure tunneling capabilities, as well
  42. as a variety of authentication methods.
  43. This package contains the ssh(1) client and the scp(1) client/server.
  44. http://www.openssh.com/
  45. config ADK_PACKAGE_OPENSSH_CLIENT_UTILS
  46. prompt "openssh-client-utils............ OpenSSH client utilities"
  47. tristate
  48. default n
  49. depends on ADK_PACKAGE_OPENSSH_CLIENT
  50. depends on ADK_COMPILE_OPENSSH
  51. help
  52. OpenSSH is a FREE version of the SSH protocol suite of network
  53. connectivity tools that increasing numbers of people on the Internet
  54. are coming to rely on. Many users of telnet, rlogin, ftp, and other
  55. such programs might not realize that their password is transmitted
  56. across the Internet unencrypted, but it is. OpenSSH encrypts all
  57. traffic (including passwords) to effectively eliminate eavesdropping,
  58. connection hijacking, and other network-level attacks. Additionally,
  59. OpenSSH provides a myriad of secure tunneling capabilities, as well
  60. as a variety of authentication methods.
  61. This package contains ssh-agent and ssh-add as well as ssh-keyscan.
  62. http://www.openssh.com/
  63. config ADK_PACKAGE_OPENSSH_SERVER
  64. prompt "openssh-server.................... OpenSSH server"
  65. tristate
  66. default n
  67. select ADK_PACKAGE_LIBOPENSSL
  68. select ADK_PACKAGE_ZLIB
  69. depends on ADK_COMPILE_OPENSSH
  70. help
  71. OpenSSH is a FREE version of the SSH protocol suite of network
  72. connectivity tools that increasing numbers of people on the Internet
  73. are coming to rely on. Many users of telnet, rlogin, ftp, and other
  74. such programs might not realize that their password is transmitted
  75. across the Internet unencrypted, but it is. OpenSSH encrypts all
  76. traffic (including passwords) to effectively eliminate eavesdropping,
  77. connection hijacking, and other network-level attacks. Additionally,
  78. OpenSSH provides a myriad of secure tunneling capabilities, as well
  79. as a variety of authentication methods.
  80. This package contains sshd(8) and ssh-keygen(8), but not scp(1),
  81. which is needed for SCP server support.
  82. http://www.openssh.com/
  83. config ADK_PACKAGE_OPENSSH_SFTP_CLIENT
  84. prompt "openssh-sftp-client............... OpenSSH SFTP client"
  85. tristate
  86. default n
  87. select ADK_PACKAGE_LIBOPENSSL
  88. select ADK_PACKAGE_ZLIB
  89. depends on ADK_COMPILE_OPENSSH
  90. help
  91. OpenSSH is a FREE version of the SSH protocol suite of network
  92. connectivity tools that increasing numbers of people on the Internet
  93. are coming to rely on. Many users of telnet, rlogin, ftp, and other
  94. such programs might not realize that their password is transmitted
  95. across the Internet unencrypted, but it is. OpenSSH encrypts all
  96. traffic (including passwords) to effectively eliminate eavesdropping,
  97. connection hijacking, and other network-level attacks. Additionally,
  98. OpenSSH provides a myriad of secure tunneling capabilities, as well
  99. as a variety of authentication methods.
  100. This package contains the /usr/bin/sftp client utility.
  101. http://www.openssh.com/
  102. config ADK_PACKAGE_OPENSSH_SFTP_SERVER
  103. prompt "openssh-sftp-server............... OpenSSH SFTP server"
  104. tristate
  105. default n
  106. select ADK_PACKAGE_LIBOPENSSL
  107. select ADK_PACKAGE_ZLIB
  108. depends on ADK_COMPILE_OPENSSH
  109. help
  110. OpenSSH is a FREE version of the SSH protocol suite of network
  111. connectivity tools that increasing numbers of people on the Internet
  112. are coming to rely on. Many users of telnet, rlogin, ftp, and other
  113. such programs might not realize that their password is transmitted
  114. across the Internet unencrypted, but it is. OpenSSH encrypts all
  115. traffic (including passwords) to effectively eliminate eavesdropping,
  116. connection hijacking, and other network-level attacks. Additionally,
  117. OpenSSH provides a myriad of secure tunneling capabilities, as well
  118. as a variety of authentication methods.
  119. This package contains the SFTP server helper programme.
  120. http://www.openssh.com/