Config.in 953 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. config BR2_PACKAGE_OPENSSH
  2. bool "openssh"
  3. depends on BR2_USE_MMU # fork()
  4. select BR2_PACKAGE_OPENSSL
  5. select BR2_PACKAGE_ZLIB
  6. help
  7. A free version of the SSH protocol suite of network
  8. connectivity tools. The standard 'ssh', 'sshd', 'scp', and
  9. friends.
  10. http://www.openssh.com/
  11. if BR2_PACKAGE_OPENSSH
  12. config BR2_PACKAGE_OPENSSH_CLIENT
  13. bool "client"
  14. default y
  15. help
  16. Client programs: ssh, scp, sftp, ssh-agent, ssh-add,
  17. ssh-copy-id.
  18. config BR2_PACKAGE_OPENSSH_SERVER
  19. bool "server"
  20. default y
  21. help
  22. Server programs: sshd, sftp-server
  23. config BR2_PACKAGE_OPENSSH_KEY_UTILS
  24. bool "key utilities"
  25. default y
  26. help
  27. Key utilities: ssh-keygen, ssh-keyscan.
  28. config BR2_PACKAGE_OPENSSH_SANDBOX
  29. bool "use sandboxing"
  30. default y
  31. help
  32. Use sandboxing for extra privilege protection of processes.
  33. This is normally preferable, but may cause seccomp problems
  34. for certain combinations of C libraries and kernel versions.
  35. endif