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