perl-path-tiny: bump to version 0.061
[buildroot-gz.git] / package / dropbear / Config.in
blob68c3b71aa931fc2c2d8e157c12876dc2446d8526
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.
7           http://matt.ucc.asn.au/dropbear/dropbear.html
9 if BR2_PACKAGE_DROPBEAR
11 config BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS
12         bool "disable reverse DNS lookups"
13         help
14           Disable reverse DNS lookups on connection. This can be handy
15           on systems without working DNS, as connections otherwise
16           stall until DNS times out.
18 config BR2_PACKAGE_DROPBEAR_SMALL
19         bool "optimize for size"
20         default y
21         help
22           Compile dropbear for the smallest possible binary size.
24           Tradeoffs are slower hashes and ciphers, and disabling of the
25           blowfish cipher and zlib.
27 config BR2_PACKAGE_DROPBEAR_WTMP
28         bool "log dropbear access to wtmp"
29         help
30           Enable logging of dropbear access to wtmp. Notice that
31           Buildroot does not generate wtmp by default.
33 config BR2_PACKAGE_DROPBEAR_LASTLOG
34         bool "log dropbear access to lastlog"
35         help
36           Enable logging of dropbear access to lastlog. Notice that
37           Buildroot does not generate lastlog by default.
39 endif