3380da69c5
Now that we need to bump openvpn to version 2.3.11 for security fixes the time has come to remove the polarssl option. Add legacy handling explaining the situation: PolarSSL 1.2.x can coexist with mbedTLS 2.x+, but OpenVPN requires PolarSSL/mbedTLS 1.3.x (the transition branch) >= 1.3.8 but doesn't build/work with the 2.x series. And PolarSSL/mbedTLS 1.3.x can't coexist with mbedTLS 2.x on the same target. So, unfortunately, openssl is now the only option (until libressl arrives) which means no more backend options in general. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
996 B
Plaintext
38 lines
996 B
Plaintext
config BR2_PACKAGE_OPENVPN
|
|
bool "openvpn"
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
OpenVPN is a full-featured SSL VPN solution which can
|
|
accomodate a wide range of configurations, including road
|
|
warrior access, home/office/campus telecommuting, WiFi
|
|
security, secure branch office linking, and enterprise-scale
|
|
remote access solutions with load balancing, failover, and
|
|
fine-grained access-controls.
|
|
|
|
http://openvpn.net/
|
|
|
|
if BR2_PACKAGE_OPENVPN
|
|
|
|
config BR2_PACKAGE_OPENVPN_LZO
|
|
bool "LZO compression"
|
|
default y
|
|
select BR2_PACKAGE_LZO
|
|
help
|
|
Enable LZO compression.
|
|
|
|
config BR2_PACKAGE_OPENVPN_SMALL
|
|
bool "Optimize for small size"
|
|
help
|
|
Make OpenVPN as small as possible.
|
|
You loose eurephia, debugging info, help messages and more.
|
|
It saves around 100 KiB in binary file size.
|
|
|
|
config BR2_PACKAGE_OPENVPN_PWSAVE
|
|
bool "Allow passwords in files"
|
|
help
|
|
Allow --askpass and --auth-user-pass passwords to be read
|
|
from a file.
|
|
|
|
endif
|