Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. http://matt.ucc.asn.au/dropbear/dropbear.html
  7. config BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS
  8. bool "disable reverse DNS lookups"
  9. depends on BR2_PACKAGE_DROPBEAR
  10. help
  11. Disable reverse DNS lookups on connection. This can be handy
  12. on systems without working DNS, as connections otherwise
  13. stall until DNS times out.
  14. config BR2_PACKAGE_DROPBEAR_SMALL
  15. bool "optimize for size"
  16. default y
  17. depends on BR2_PACKAGE_DROPBEAR
  18. help
  19. Compile dropbear for the smallest possible binary size.
  20. Tradeoffs are slower hashes and ciphers, and disabling of the
  21. blowfish cipher and zlib.
  22. config BR2_PACKAGE_DROPBEAR_WTMP
  23. bool "log dropbear access to wtmp"
  24. depends on BR2_PACKAGE_DROPBEAR
  25. help
  26. Enable logging of dropbear access to wtmp. Notice that
  27. Buildroot does not generate wtmp by default.
  28. config BR2_PACKAGE_DROPBEAR_LASTLOG
  29. bool "log dropbear access to lastlog"
  30. depends on BR2_PACKAGE_DROPBEAR
  31. help
  32. Enable logging of dropbear access to lastlog. Notice that
  33. Buildroot does not generate lastlog by default.