1config 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 11 http://www.openssh.com/ 12 13if BR2_PACKAGE_OPENSSH 14 15config BR2_PACKAGE_OPENSSH_CLIENT 16 bool "client" 17 default y 18 help 19 Client programs: ssh, scp, sftp, ssh-agent, ssh-add, 20 ssh-copy-id. 21 22config BR2_PACKAGE_OPENSSH_SERVER 23 bool "server" 24 default y 25 select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC 26 help 27 Server programs: sshd, sftp-server 28 29config BR2_PACKAGE_OPENSSH_KEY_UTILS 30 bool "key utilities" 31 default y 32 help 33 Key utilities: ssh-keygen, ssh-keyscan. 34 35config BR2_PACKAGE_OPENSSH_SANDBOX 36 bool "use sandboxing" 37 default y 38 help 39 Use sandboxing for extra privilege protection of processes. 40 41 This is normally preferable, but may cause seccomp problems 42 for certain combinations of C libraries and kernel versions. 43endif 44