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 help 26 Server programs: sshd, sftp-server 27 28if BR2_PACKAGE_OPENSSH_SERVER 29 30config BR2_PACKAGE_OPENSSH_ENABLE_ROOT_LOGIN 31 bool "root login" 32 default y if BR2_TARGET_ENABLE_ROOT_LOGIN 33 help 34 Set PermitRootLogin to yes. 35 36endif 37 38config BR2_PACKAGE_OPENSSH_KEY_UTILS 39 bool "key utilities" 40 default y 41 help 42 Key utilities: ssh-keygen, ssh-keyscan. 43 44config BR2_PACKAGE_OPENSSH_GEN_KEYS 45 bool "generate keys" 46 47endif 48