summaryrefslogtreecommitdiffstats
path: root/rules/openssh.in
blob: 09f5c55551d7272d6e457e000b095d325cc9866a (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
## SECTION=networking

menuconfig OPENSSH
	tristate
	select ZLIB
	select OPENSSL
	select LIBC_CRYPT
	select LIBC_UTIL
	select RC_ONCE if OPENSSH_SSHD && RUNTIME
	select BUSYBOX_START_STOP_DAEMON if OPENSSH_SSHD_STARTSCRIPT
	select LIBSELINUX if GLOBAL_SELINUX
	select OPENSSH_KEYGEN if OPENSSH_SSHD
	prompt "openssh                       "
	help
	  secure shell client/server, an rlogin/rsh/rcp replacement

	  ssh (Secure Shell) is a program for logging into a remote
	  machine and for executing commands on a remote machine. It
	  provides secure encrypted communications between two
	  untrusted hosts over an insecure network.  X11 connections
	  and arbitrary TCP/IP ports can also be forwarded over the
	  secure channel. It is intended as a replacement for rlogin,
	  rsh and rcp, and can be used to provide applications with a
	  secure communication channel.

if OPENSSH

config OPENSSH_SSH
	bool "ssh (client)"
	help
	  Install the client program (ssh) on the target

config OPENSSH_SSHD
	bool "sshd (server)"
	default y
	help
	  Install the openSSH server program (sshd) on the
	  target

config OPENSSH_SSHD_STARTSCRIPT
	bool
	default y
	depends on OPENSSH_SSHD
	prompt "install /etc/init.d/openssh"

config OPENSSH_SSHD_SYSTEMD_UNIT
	bool
	default y
	depends on OPENSSH_SSHD && SYSTEMD
	prompt "install systemd unit files for sshd"

config OPENSSH_SCP
	bool "scp"
	help
	  Install the secure copy program (scp) on the target

config OPENSSH_SCP_TARGET_USE
	bool "to be used at target's side"
	depends on OPENSSH_SCP
	select OPENSSH_SSH
	help
	  Enable this entry if the 'scp' command is intended to be used at
	  target's side

config OPENSSH_SFTP
	bool "sftp (client)"
	select OPENSSH_SSH
	help
	  Install the secure ftp client (sftp) on the target

config OPENSSH_SFTP_SERVER
	bool "sftp-server"
	help
	  Install the secure ftp server (sftp) on the target

config OPENSSH_KEYGEN
	bool "ssh-keygen"
	default y
	help
	  Install ssh-keygen on the target

endif