blob: 0903ad1602e3a25366569d4a3e8c44ff8f61c6c0 (
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
  | 
config BR2_PACKAGE_DROPBEAR
	bool "dropbear"
	select BR2_PACKAGE_ZLIB if !BR2_PACKAGE_DROPBEAR_SMALL
	help
	  A small SSH 2 server designed for small memory environments.
	  http://matt.ucc.asn.au/dropbear/dropbear.html
config BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS
	bool "disable reverse DNS lookups"
	depends on BR2_PACKAGE_DROPBEAR
	help
	  Disable reverse DNS lookups on connection. This can be handy
	  on systems without working DNS, as connections otherwise
	  stall until DNS times out.
config BR2_PACKAGE_DROPBEAR_SMALL
	bool "optimize for size"
	default y
	depends on BR2_PACKAGE_DROPBEAR
	help
	  Compile dropbear for the smallest possible binary size.
	  Tradeoffs are slower hashes and ciphers, and disabling of the
	  blowfish cipher and zlib.
config BR2_PACKAGE_DROPBEAR_WTMP
	bool "log dropbear access to wtmp"
	depends on BR2_PACKAGE_DROPBEAR
	help
	  Enable logging of dropbear access to wtmp. Notice that
	  Buildroot does not generate wtmp by default.
config BR2_PACKAGE_DROPBEAR_LASTLOG
	bool "log dropbear access to lastlog"
	depends on BR2_PACKAGE_DROPBEAR
	help
	  Enable logging of dropbear access to lastlog. Notice that
	  Buildroot does not generate lastlog by default.
  |