hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
config BR2_PACKAGE_OPENSSH
   bool "openssh"
   depends on BR2_USE_MMU # fork()
   select BR2_PACKAGE_OPENSSL
   select BR2_PACKAGE_ZLIB
   help
     A free version of the SSH protocol suite of network
     connectivity tools. The standard 'ssh', 'sshd', 'scp', and
     friends.
 
     http://www.openssh.com/
 
if BR2_PACKAGE_OPENSSH
 
config BR2_PACKAGE_OPENSSH_CLIENT
   bool "client"
   default y
   help
     Client programs: ssh, scp, sftp, ssh-agent, ssh-add,
     ssh-copy-id.
 
config BR2_PACKAGE_OPENSSH_SERVER
   bool "server"
   default y
   help
     Server programs: sshd, sftp-server
 
if BR2_PACKAGE_OPENSSH_SERVER
 
config BR2_PACKAGE_OPENSSH_ENABLE_ROOT_LOGIN
   bool "root login"
   default y if BR2_TARGET_ENABLE_ROOT_LOGIN
   help
     Set PermitRootLogin to yes.
 
endif
 
config BR2_PACKAGE_OPENSSH_KEY_UTILS
   bool "key utilities"
   default y
   help
     Key utilities: ssh-keygen, ssh-keyscan.
 
endif