Config.in 851 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_DROPBEAR
  2. bool "dropbear"
  3. default n
  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_URANDOM
  8. bool " Use /dev/urandom (low entropy systems only)?"
  9. default n
  10. depends on BR2_PACKAGE_DROPBEAR
  11. help
  12. By default, dropbear uses the much more secure /dev/random. If you
  13. are using a system lacking usable entropy sources, this could cause
  14. the dropbear ssh daemon to block forever waiting for entropy that
  15. will never arrive. By making dropbear use /dev/urandom, you can
  16. prevent Dropbear from blocking while waiting on the random device.
  17. This could however significantly reduce the security of your ssh
  18. connections. Make sure you know what you are doing if you enable
  19. this option -- most people should answer N.