The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / dropbear / Config.in
1 config BR2_PACKAGE_DROPBEAR
2         bool "dropbear"
3         select BR2_PACKAGE_ZLIB if !BR2_PACKAGE_DROPBEAR_SMALL
4         help
5           A small SSH 2 server designed for small memory environments.
6
7           http://matt.ucc.asn.au/dropbear/dropbear.html
8
9 if BR2_PACKAGE_DROPBEAR
10
11 config BR2_PACKAGE_DROPBEAR_CLIENT
12         bool "client programs"
13         default y
14         help
15           Provides the programs: dbclient, ssh
16
17           Note that the following programs are also used server-side
18           and are therefore always build regardless this setting:
19           dropbear, dropbearkey, dropbearconvert, scp
20
21 config BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS
22         bool "disable reverse DNS lookups"
23         help
24           Disable reverse DNS lookups on connection. This can be handy
25           on systems without working DNS, as connections otherwise
26           stall until DNS times out.
27
28 config BR2_PACKAGE_DROPBEAR_SMALL
29         bool "optimize for size"
30         default y
31         help
32           Compile dropbear for the smallest possible binary size.
33
34           Tradeoffs are slower hashes and ciphers, and disabling of the
35           blowfish cipher and zlib.
36
37 config BR2_PACKAGE_DROPBEAR_WTMP
38         bool "log dropbear access to wtmp"
39         help
40           Enable logging of dropbear access to wtmp. Notice that
41           Buildroot does not generate wtmp by default.
42
43 config BR2_PACKAGE_DROPBEAR_LASTLOG
44         bool "log dropbear access to lastlog"
45         help
46           Enable logging of dropbear access to lastlog. Notice that
47           Buildroot does not generate lastlog by default.
48
49 endif