The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / openvpn / Config.in
1 config BR2_PACKAGE_OPENVPN
2         bool "openvpn"
3         depends on BR2_USE_MMU # fork()
4         help
5           OpenVPN is a full-featured SSL VPN solution which can
6           accomodate a wide range of configurations, including road
7           warrior access, home/office/campus telecommuting, WiFi
8           security, secure branch office linking, and enterprise-scale
9           remote access solutions with load balancing, failover, and
10           fine-grained access-controls.
11
12           http://openvpn.net/
13
14 if BR2_PACKAGE_OPENVPN
15
16 config BR2_PACKAGE_OPENVPN_LZO
17         bool "LZO compression"
18         default y
19         select BR2_PACKAGE_LZO
20         help
21           Enable LZO compression.
22
23 config BR2_PACKAGE_OPENVPN_SMALL
24         bool "Optimize for small size"
25         help
26           Make OpenVPN as small as possible.
27           You loose eurephia, debugging info, help messages and more.
28           It saves around 100 KiB in binary file size.
29
30 choice
31         prompt "Crypto backend"
32         default BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL
33         help
34           Select the cryptographic library to use.
35
36         config BR2_PACKAGE_OPENVPN_CRYPTO_OPENSSL
37         bool "OpenSSL"
38         select BR2_PACKAGE_OPENSSL
39         help
40           Enable TLS-based key exchange and OpenSSL crypto support.
41
42         config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
43         bool "PolarSSL"
44         select BR2_PACKAGE_POLARSSL
45         help
46           Enable TLS-based key exchange and PolarSSL crypto support.
47
48 endchoice
49
50 endif