58dfd45aec
Added configuration option BR2_PACKAGE_OPENVPN_PWSAVE that adds --enable-password-save to OPENVPN_CONF_OPTS if selected. [Thomas: rewrap Config.in help text, as suggested by Vicente.] Signed-off-by: Andreas Wetzel <andreas.wetzel@nanotronic.ch> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_OPENVPN
|
|
bool "openvpn"
|
|
depends on BR2_USE_MMU # fork()
|
|
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.
|
|
|
|
choice
|
|
prompt "Crypto backend"
|
|
default BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL
|
|
help
|
|
Select the cryptographic library to use.
|
|
|
|
config BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL
|
|
bool "OpenSSL"
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
Enable TLS-based key exchange and OpenSSL crypto support.
|
|
|
|
config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
|
|
bool "PolarSSL"
|
|
select BR2_PACKAGE_POLARSSL
|
|
help
|
|
Enable TLS-based key exchange and PolarSSL crypto support.
|
|
|
|
endchoice
|
|
|
|
endif
|