Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_OPENVPN
  2. bool "openvpn"
  3. depends on BR2_USE_MMU # fork()
  4. select BR2_PACKAGE_LIBCAP_NG
  5. select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS
  6. select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
  7. help
  8. OpenVPN is a full-featured SSL VPN solution which can
  9. accommodate a wide range of configurations, including road
  10. warrior access, home/office/campus telecommuting, WiFi
  11. security, secure branch office linking, and enterprise-scale
  12. remote access solutions with load balancing, failover, and
  13. fine-grained access-controls.
  14. http://openvpn.net/
  15. if BR2_PACKAGE_OPENVPN
  16. config BR2_PACKAGE_OPENVPN_LZ4
  17. bool "LZ4 compression"
  18. default y
  19. select BR2_PACKAGE_LZ4
  20. help
  21. Enable LZ4 compression.
  22. config BR2_PACKAGE_OPENVPN_LZO
  23. bool "LZO compression"
  24. default y
  25. select BR2_PACKAGE_LZO
  26. help
  27. Enable LZO compression.
  28. config BR2_PACKAGE_OPENVPN_SMALL
  29. bool "Optimize for small size"
  30. help
  31. Make OpenVPN as small as possible.
  32. You loose eurephia, debugging info, help messages and more.
  33. It saves around 100 KiB in binary file size.
  34. endif